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 |
---|---|---|---|
20 | 2023-07-05 04:40:52 | 27.67 | 97% |
5 | 2023-07-04 02:27:07 | 26.01 | 95% |
4 | 2023-07-04 02:25:29 | 23.91 | 92% |