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-12-13 00:38:03 | 35.78 | 92% |
15 | 2013-12-06 01:04:34 | 20.35 | 92% |
12 | 2013-12-04 19:15:56 | 22.31 | 91% |
6 | 2013-11-17 13:12:16 | 41.82 | 91% |
2 | 2013-11-16 23:56:46 | 38.56 | 92% |