How do I change the G or E prompt colors?
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")
Hits: 2