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 |
|---|---|---|---|
| 136 | 2019-03-03 06:39:38 | 94.18 | 98% |
| 113 | 2019-02-25 15:19:00 | 104.83 | 99% |
| 106 | 2019-02-25 15:12:34 | 101.09 | 98% |
| 102 | 2019-02-25 15:09:16 | 98.84 | 98% |
| 97 | 2019-02-25 15:04:45 | 95.78 | 98% |
| 85 | 2019-02-25 14:51:00 | 97.96 | 99% |
| 57 | 2019-02-25 14:22:29 | 95.27 | 99% |
| 55 | 2019-02-25 14:20:58 | 94.86 | 99% |
| 54 | 2019-02-25 14:20:29 | 94.83 | 99% |
| 50 | 2019-02-25 14:16:28 | 96.01 | 98% |