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 |
---|---|---|---|
23 | 2025-04-16 11:31:48 | 16.48 | 87.9% |
21 | 2025-04-16 11:25:50 | 18.16 | 89.4% |
2 | 2025-04-05 09:47:50 | 19.43 | 87.6% |