Dear Tutors,<br><br>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:<br>
<br>password = "Helloworld"<br>try= raw_input("What's the password?")<br>while try != password:<br>
try = raw_input("Incorrect, what's the password?")<br><br>And if so, then should I use sys.stdin.read() and sys.stdout.write() for the program that generates the random passwords or are there other commands that I should use?<br>
<br>Thanks!<br>