osx - python idle 3.4.0 'print' syntax error -
the python idle throwing error @ print() function im not sure why heres code..
password = "cow" name = input() input("mr penguin: hello there mr penguin name? ") input("well, hello there"+name+"tell me password") input("you: password is, ") input("mr penguin: im little defh repeat that? ") input("you: password is, " print("pc police: stop! dont ever trust penguins data becuase told every 1 password "+ password) input("press enter exit")
you missing parenthesis @ end of input
on prior line.
change:
input("you: password is, "
to:
input("you: password is, ")
for record, print
fine. note when cryptic error, on previous line.
Comments
Post a Comment