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 |
---|---|---|---|
28 | 2024-08-06 05:38:06 | 35.10 | 93.8% |
16 | 2024-08-06 05:18:21 | 33.50 | 90.4% |
10 | 2024-08-06 05:05:09 | 31.36 | 91.1% |