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 |
---|---|---|---|
52 | 2013-08-04 15:52:50 | 43.66 | 77% |
42 | 2013-05-14 14:38:43 | 47.24 | 81% |
28 | 2013-05-14 14:14:35 | 49.44 | 84% |
25 | 2013-05-14 14:09:20 | 51.13 | 86% |
6 | 2013-05-13 13:36:58 | 53.01 | 93% |