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 |
---|---|---|---|
14 | 2013-09-10 23:15:07 | 57.77 | 83% |
2 | 2012-12-28 22:05:46 | 68.89 | 91% |
1 | 2012-12-27 18:33:42 | 66.47 | 83% |