Build a Report Card Printer - Step 6

Tell us what’s happening:

Maybe I do not understand the instructions? I get as comment that i should have print(name) in my code

Your code so far

name = 'Alice'

# User Editable Region

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_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Safari/605.1.15

Challenge Information:

Build a Report Card Printer - Step 6

see that these two lines are in the highlighted area? you need to make changes here

also it says

Remove the earlier outputs of the name variable.

but you did not remove anything

Hi,

I still dont understand this step.

I checked all the questions on step 6 and still dont understand

does this instruction: Remove the earlier outputs of the name variable. mean we need to remove Alice from the first code?

remove the prints

related to name

these two:

oh right I got it,