first_name = ‘John’
last_name = ‘Doe’
full_name = first_name + ’ ’ + last_name
address = ‘123 Main Street’
address += ‘, Apartment 4B’
employee_age = 28
# User Editable Region
employee_info = full_name + ‘is’ + employee_age
# User Editable Region
first_name = ‘John’
last_name = ‘Doe’
full_name = first_name + ’ ’ + last_name
address = ‘123 Main Street’
address += ‘, Apartment 4B’
employee_age = 28
# User Editable Region
employee_info = full_name + ‘is’ + employee_age
# User Editable Region
Please Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!