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 |
---|---|---|---|
26 | 2024-01-10 08:36:29 | 32.36 | 92.6% |
20 | 2024-01-10 08:25:49 | 34.77 | 95.3% |
6 | 2024-01-10 07:50:38 | 34.06 | 95.9% |