When I use print statements, nothing prints.

Frequently ASKED Questions by THE Crimson Creek TEAM

When I use print statements, nothing prints.

Verify that you have a print statement and that there is no space between the print and the parentheses.

WRONG

print ("test")

CORRECT

print("test")
Dragon Codes