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 | 2015-08-04 22:03:00 | 33.54 | 86% |
26 | 2015-07-30 20:44:07 | 33.23 | 91% |
25 | 2015-07-29 11:51:13 | 37.97 | 89% |
21 | 2015-07-27 14:31:23 | 39.89 | 91% |
17 | 2015-07-23 20:23:59 | 31.79 | 90% |
9 | 2015-07-11 13:30:14 | 42.45 | 96% |
8 | 2015-07-10 18:57:43 | 37.02 | 92% |