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 |
|---|---|---|---|
| 11 | 2014-04-05 17:17:05 | 29.48 | 92% |
| 8 | 2014-04-05 10:39:21 | 34.56 | 97% |
| 3 | 2014-04-05 09:26:30 | 28.99 | 89% |
| 2 | 2014-04-05 09:24:42 | 27.99 | 93% |