Recent content by simonCode

  1. S

    Help with Basic Python Coding

    Hello, your problem is, that function input() finding a variable in your script. If you type Cyndi as argument in input(), script start finding a variable name Cyndi. You have to use raw_input() function, that return what you expect. fix: password = raw_input(Enter Password to " \ "enter...