Build a Report Card Printer - Step 9

Tell us what’s happening:

Debes reemplazarlo int con float en la isinstance(score, int)llamada existente. aunque en el paso 9 el código es correcto me aparece ese enunciado y no me deja avanzar

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


# 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

Here you are asked to :

Replace int with float in the existing isinstance() call

and you had previously :

print(isinstance(score, int))

So why did you add

?

(Sorry for not answering in Spanish, if you want so you can create a post in the spanish section)

Are you on Step 9 or Step 10?

There is a step 10 ? I didn’t know by the time I posted the previous message. @cabreraclaudi199 if you are on step 10, you should create a new post with the good subject (Build a Report Card Printer - Step 10).