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 |
---|---|---|---|
31 | 2016-04-13 15:58:00 | 75.36 | 94% |
24 | 2016-04-13 15:46:41 | 81.44 | 99% |
21 | 2012-10-30 21:37:54 | 56.95 | 93% |
17 | 2012-06-29 19:09:32 | 63.60 | 94% |
11 | 2011-11-10 20:38:06 | 57.64 | 94% |
2 | 2011-11-10 20:25:48 | 50.11 | 92% |