Tell us what’s happening:
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
Challenge Information:
Build a Report Card Printer - Step 6