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 | 2022-01-15 20:02:30 | 82.65 | 95% |
15 | 2022-01-15 19:51:04 | 75.21 | 93% |
4 | 2021-09-19 02:54:44 | 65.44 | 94% |