quiz_again = str(input("Enter yes or no")
if quiz_again == "yes":
quiz()
I am tying to run this on python (idle version 3.4.2) but I am greeted with syntax error: invalid syntax and the cursor highlights the ":" If anyone could explain I would be very appreciative
str, should bestr(input("Enter yes or no")).