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 |
|---|---|---|---|
| 67 | 2023-05-23 15:21:54 | 66.93 | 95.7% |
| 44 | 2023-05-23 00:34:29 | 75.62 | 97.6% |
| 28 | 2023-05-22 20:03:50 | 68.46 | 97.6% |
| 4 | 2023-05-22 17:29:55 | 74.40 | 98.7% |