Two string variables; one print function
string_variable.py
# Create variables to reference two strings.
first_name = 'Kathryn'
last_name = 'Marino'
# Display the values referenced by the variables.
print(first_name, last_name)
string_variable.py
# Create variables to reference two strings.
first_name = 'Kathryn'
last_name = 'Marino'
# Display the values referenced by the variables.
print(first_name, last_name)