import os import sys def run(program, *args): pid = os.fork() if not pid: os.execvp(program, program + args) return os.wait()[0] run("python", "hello.py")
Game | Time | WPM | Accuracy |
---|---|---|---|
5 | 2011-05-26 17:39:00 | 38.49 | 96% |
4 | 2011-05-26 17:31:03 | 34.61 | 91% |
1 | 2011-05-26 17:20:43 | 23.47 | 85% |