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 |
---|---|---|---|
49 | 2023-08-01 13:31:27 | 39.72 | 92.9% |
47 | 2023-08-01 13:29:18 | 38.85 | 91.8% |
18 | 2021-09-18 11:30:31 | 35.61 | 95% |
2 | 2021-09-18 10:57:06 | 33.39 | 94% |
1 | 2021-09-18 10:55:29 | 21.59 | 90% |