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 |
---|---|---|---|
25 | 2013-09-08 19:07:27 | 44.72 | 92% |
22 | 2013-09-08 19:02:06 | 51.06 | 93% |
20 | 2013-09-08 18:58:20 | 40.07 | 89% |
15 | 2013-04-17 16:07:32 | 37.39 | 89% |
9 | 2013-04-16 21:14:43 | 29.83 | 85% |
2 | 2013-04-16 20:42:27 | 33.88 | 90% |