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 |
---|---|---|---|
45 | 2025-04-25 16:11:37 | 41.04 | 97% |
40 | 2024-07-15 07:27:37 | 42.73 | 97.6% |
27 | 2024-04-11 06:24:58 | 35.34 | 94.4% |