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 |
---|---|---|---|
37 | 2024-09-05 07:18:55 | 20.49 | 90.9% |
30 | 2023-08-26 06:26:39 | 21.36 | 89.3% |
25 | 2023-08-25 14:05:14 | 23.61 | 92.6% |