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 |
---|---|---|---|
7 | 2023-05-29 07:20:03 | 20.85 | 93.8% |
3 | 2023-05-23 12:37:12 | 20.69 | 91.3% |
2 | 2023-05-23 12:34:34 | 16.53 | 89.4% |