Build a Report Card Printer - Step 5

Tell us what’s happening:
Describe your issue in detail here.

Here it is telling me to print is_student and the type(is_student) together on a single line so I put
print(is_student,type(is_student) but it is saying that I’m not doing this correctly

Your code so far

name = 'Alice'
print(name)
print(type(name))
is_student = True
print(is_student,type(is_student)


Your mobile information:

SM-A166U - Android 16 - Android SDK 36

Challenge: Build a Report Card Printer - Step 5

Link to the challenge:

Welcome to the forum @e.crft4794,

Please look at the example again:

print(subject, type(subject))

Compare to your code. You have two opening parentheses but only one closing parenthesis.

Happy coding