Build a Report Card Printer - Step 5

Tell us what’s happening:

The print() function can display more than one value at a time. Separate values with a comma (,) to print them on the same line.

Example Code
subject = ‘Python’
print(subject, type(subject)) # Output: Python <class ‘str’>
Print both is_student and type(is_student) on the same line using a comma , as shown in the example. Then, check the output in the terminal that shows the value of is_student, and its type as bool (boolean).

Your code so far

is_student ='boo'

# User Editable Region

print(is_student, type(name))

# 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 5

are you using is_student inside type?

also you may need to reset the step (button image ) because there are lines of code that are now missing