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 |
---|---|---|---|
9 | 2024-09-22 23:58:40 | 22.74 | 89.8% |
8 | 2024-09-22 23:41:36 | 17.34 | 92% |
4 | 2024-09-09 03:02:31 | 26.02 | 93.3% |