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 |
|---|---|---|---|
| 44 | 2023-09-27 22:36:54 | 26.81 | 94.1% |
| 32 | 2023-08-21 17:47:40 | 35.07 | 96.4% |
| 19 | 2023-08-15 15:17:09 | 29.29 | 94.9% |
| 13 | 2023-08-11 17:45:35 | 26.59 | 92.2% |
| 2 | 2023-08-09 18:54:41 | 25.76 | 95.1% |