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 |
---|---|---|---|
22 | 2017-05-27 22:17:21 | 76.82 | 88% |
20 | 2017-05-27 22:15:12 | 68.14 | 84% |
17 | 2017-05-27 22:12:16 | 83.10 | 93% |
12 | 2017-05-27 22:05:15 | 66.73 | 90% |
4 | 2017-05-27 21:51:20 | 89.77 | 93% |
1 | 2017-05-27 21:47:20 | 73.42 | 83% |