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 |
---|---|---|---|
26 | 2016-04-03 21:29:19 | 44.15 | 92% |
21 | 2016-04-03 14:59:14 | 47.06 | 93% |
20 | 2016-04-03 14:58:07 | 30.55 | 94% |
18 | 2016-04-03 14:53:09 | 43.83 | 97% |
11 | 2016-04-03 14:42:36 | 45.15 | 92% |
1 | 2016-04-03 14:13:01 | 33.16 | 87% |