Tell us what’s happening:
Build a Report Card Printer - Step 7 Declare a student’s Age
I am having trouble going the step 7 here’s what I am having issue with right now.
name = ‘Alice’
print(name, type(name))
is_student = True
print(is_student, type(is_student))
int=20,
Your code so far
name = 'Alice'
print(name, type(name))
is_student = True
print(is_student, type(is_student))
# User Editable Region
int=20,
# User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36
Challenge Information:
Build a Report Card Printer - Step 7