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 |
---|---|---|---|
29 | 2020-12-07 20:24:50 | 77.96 | 100% |
27 | 2020-12-07 20:12:13 | 58.96 | 98% |
23 | 2020-12-07 20:01:32 | 70.08 | 98% |
19 | 2020-12-07 19:52:07 | 67.53 | 99% |
15 | 2020-12-05 13:21:59 | 59.12 | 98% |
14 | 2020-12-05 13:09:00 | 58.24 | 98% |