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 |
---|---|---|---|
17 | 2012-02-14 16:38:06 | 39.95 | 96% |
10 | 2012-02-14 16:18:05 | 28.37 | 89% |
9 | 2012-02-05 03:03:17 | 31.67 | 94% |
5 | 2012-02-05 02:53:17 | 24.02 | 89% |
1 | 2012-02-03 12:05:39 | 21.40 | 82% |