Tell us what’s happening:
Step 6
The student name should follow the same format as the other details.
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.
pls am stuck here, what do i do?
Your code so far
# User Editable Region
name = "Alice"
print(name)
print(type(name))
# User Editable Region
is_student = True
print(is_student, type(is_student))
print(name, (type(name)))
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:152.0) Gecko/20100101 Firefox/152.0
Challenge Information:
Build a Report Card Printer - Step 6