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 |
|---|---|---|---|
| 29 | 2023-09-26 16:49:24 | 72.54 | 97% |
| 26 | 2023-09-26 16:40:01 | 56.38 | 93.3% |
| 13 | 2023-09-25 13:58:07 | 59.68 | 94.1% |
| 12 | 2023-09-25 13:55:54 | 57.99 | 94.8% |