One Python script giving “user input” to another python script
问题 this is my first question, I hope I'm doing this right. let's say I have these this file: "simple.py": a=raw_input("your name?") print "Hello",a but with a different script, I want to execute "simple.py" many time and giving the input automatically, that would work like: "everyone.py" run simple.py input=Alice run simple.py input=Bob ... to get "Hello Alice" "Hello Bob" ... I know it's possible to make "everyone.py" run "simple.py" by using os.system, but is there any practical way to do