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 |
|---|---|---|---|
| 91 | 2019-02-16 22:58:27 | 93.46 | 97% |
| 74 | 2019-02-16 07:51:35 | 100.31 | 96% |
| 73 | 2019-02-16 07:50:53 | 91.47 | 95% |
| 45 | 2019-02-16 05:41:30 | 97.62 | 97% |
| 35 | 2019-02-14 04:00:15 | 92.96 | 98% |
| 3 | 2018-08-30 23:33:53 | 90.54 | 97% |