Build a Report Card Printer - Step 7

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

Welcome to the forum @ankur96!

Declare a variable named age and assign it the integer value 20 .

You have assigned the value 25 to age, but what do the instructions ask you to set age to?

Happy coding!

Thank you and I corrected.