Tell us what’s happening:
I am receiving message below at step 7 Declare a student’s Age)that is not allowing me to move forward.
The variable age should store the value 20. Do not surround the value with quotes.
My code is below.
name = ‘Alice’
print(name, type(name))
is_student = True
print(is_student, type(is_student))
age = 25
print(age, type(age))
I am not sure what I am missing.
Your code so far
name = 'Alice'
print(name, type(name))
is_student = True
print(is_student, type(is_student))
age = 25
# User Editable Region
print(age, type(age))
# 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/147.0.0.0 Safari/537.36
Challenge Information:
Build a Report Card Printer - Step 7