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 |
---|---|---|---|
164 | 2023-10-14 19:38:38 | 38.49 | 94.1% |
142 | 2023-10-09 08:39:23 | 38.45 | 93.6% |
135 | 2023-10-06 17:00:50 | 42.66 | 94.2% |
30 | 2023-09-03 19:08:06 | 35.93 | 92% |
18 | 2023-08-23 18:01:17 | 44.28 | 95.3% |