Build a Report Card Printer - Step 9

Tell us what’s happening:

I think this is a bug or something that I can’t fix, even though I reset or refreshed it how manytimes

Your code so far

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

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

age = 20
print(age, type(age))

score = 80.5

# User Editable Region

print(score, type(score), isinstance(score, float))


# 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/144.0.0.0 Safari/537.36

Challenge Information:

Build a Report Card Printer - Step 9

you need to update the existing isinstance, then add an other print

please reset the step and try again, do not add other arguments to the existing print

Could you be more specific? I still don’t understand

did you reset the step?
if you do you should see one print that has instance inside, which is the one you need to update with float

then go to a new line and write a new print following the instructions

ok i understand now tysm!

I did what you said, but it still ran wrong. It was “print (score, type (score), isinstance (score, float)”.
Print(score, type(score)) "?

that’s not what I said

there is a print with only isinstance, do not other other things inside it, only update it as requested

then, create the new print in a new line

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.

Thank you.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.