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-03-13 07:25:05 | 28.41 | 95% |
26 | 2015-09-01 15:57:38 | 41.36 | 97% |
19 | 2015-09-01 15:47:38 | 39.31 | 93% |
11 | 2015-08-28 03:40:50 | 41.56 | 97% |
5 | 2015-08-28 01:05:55 | 32.15 | 93% |