Remove the earlier outputs of the name variable. Then, print name and type(name) together on one line separated by a comma like the previous step. This my answer. print(name, type(name)) But it’s incorrect.
Your code so far
name = 'Alice'
# User Editable Region
print(name)
print(type(name))
# User Editable Region
is_student = True
print(name, type(name))
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.2 Safari/605.1.15
If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge.
The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.