Dear Python Tutors,

I was wondering how to break into my one program I made using brute force
methods. Here's the code:

password = "Helloworld"
try= raw_input("What's the password?")
while try != password:
     try = raw_input("Incorrect, what's the password?")

I know how to do it in the command line, but not through another program.
Generating the random tries for the password isn't the issue, but entering
the password(s) in between the two programs is an issue because I don't know
how to make programs communicate through raw inputs.

Thanks!
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to