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 |
---|---|---|---|
33 | 2018-04-21 07:47:15 | 63.24 | 99% |
25 | 2014-12-28 13:08:30 | 47.98 | 94% |
16 | 2012-02-27 13:45:43 | 50.01 | 94% |
15 | 2012-02-27 13:44:32 | 53.89 | 95% |
13 | 2012-02-27 13:38:40 | 52.13 | 96% |
8 | 2012-02-08 05:01:00 | 61.49 | 95% |
3 | 2012-02-08 04:53:01 | 60.89 | 98% |