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 |
---|---|---|---|
11 | 2024-05-19 20:57:58 | 60.47 | 97.7% |
4 | 2021-01-31 00:32:00 | 48.51 | 97.1% |
2 | 2021-01-30 23:55:11 | 46.80 | 97% |