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 |
---|---|---|---|
8 | 2023-08-03 17:23:14 | 24.75 | 92% |
3 | 2023-08-03 17:14:26 | 27.05 | 96% |
2 | 2023-08-03 17:12:47 | 21.90 | 90% |