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
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.