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 |
---|---|---|---|
79 | 2023-09-15 05:42:21 | 50.97 | 92.5% |
77 | 2023-09-15 05:34:45 | 49.19 | 93% |
44 | 2023-09-14 13:55:02 | 49.82 | 94.3% |
35 | 2023-09-14 13:40:23 | 44.64 | 94.3% |
22 | 2023-09-11 14:58:51 | 46.57 | 95% |