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 |
|---|---|---|---|
| 43 | 2021-11-30 19:46:27 | 54.23 | 95% |
| 28 | 2021-10-19 15:22:38 | 61.39 | 96% |
| 21 | 2021-10-19 15:05:11 | 73.28 | 97% |
| 19 | 2021-10-19 15:03:33 | 68.33 | 97% |
| 17 | 2021-09-23 18:26:56 | 59.79 | 97% |