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 |
|---|---|---|---|
| 16 | 2024-05-20 12:27:33 | 46.22 | 94.6% |
| 9 | 2024-05-19 05:40:02 | 36.34 | 93.6% |
| 5 | 2024-05-18 13:52:55 | 36.96 | 91.6% |
| 4 | 2024-05-18 13:51:43 | 35.50 | 93.1% |