Re: [Tutor] Communicating Between Programs Using A Raw Input (Cont'd)

2011-06-17 Thread Alan Gauld
"Jacob Bender" wrote did have one question however, and that is will I need to modify the code of my password program? No, if it uses raw_input and print it will be using atdin and stdout so you can pipe from one program into the other Here's the code again: password = "Helloworld" try=

[Tutor] Communicating Between Programs Using A Raw Input (Cont'd)

2011-06-17 Thread Jacob Bender
Dear Tutors, Alright, I read up on stdin and stdout and I did find how useful they are. I did have one question however, and that is will I need to modify the code of my password program? Here's the code again: password = "Helloworld" try= raw_input("What's the password?") while try != password: