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 |
|---|---|---|---|
| 157 | 2023-09-15 00:26:41 | 46.54 | 97% |
| 93 | 2023-08-29 16:09:45 | 42.78 | 97.1% |
| 74 | 2023-08-27 14:04:09 | 41.11 | 96.5% |
| 42 | 2023-08-24 13:32:03 | 37.59 | 95.9% |