Build a Report Card Printer - Step 6

Tell us what’s happening:

I got stuck at this stage, please help!
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.

Your code so far


# User Editable Region

name = 'Alice'
print(name)
print(type(name))

is_student = True
print(is_student, type(is_student))
print(ِis_student, type(is_student))
print(name, type(name))


# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36

Challenge Information:

Build a Report Card Printer - Step 6

please replace this as asked

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.