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 |
---|---|---|---|
65 | 2024-01-14 15:24:27 | 36.81 | 92.2% |
24 | 2024-01-07 14:24:34 | 35.26 | 91.3% |
16 | 2024-01-07 14:08:52 | 28.64 | 89.2% |