Build a Report Card Printer - Step 9

Tell us what’s happening:

“Build a Report Card Printer - Step 9 bugMy code:print(isinstance(score, float))
print(score, type(score))Expected output appears in console:True
80.5 <class ‘float’>But test fails with confusing error mentioning ‘int’ instead of ‘float’. Tried:Reset All Code multiple timesHard refresh (Ctrl+F5)Typed fresh (no copy-paste)Cleared browser cacheScreenshots attached showing exact code and failing test.This step 9 appears broken - other users report same issue on forum.”**

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(isinstance(score, int))
print(isinstance(score, float))
print(score, type(score))



# User Editable Region


Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36

Challenge Information:

Build a Report Card Printer - Step 9

The instruction was to change this existing print statement from int to float, not create a new print statement.

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