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 |
---|---|---|---|
69 | 2023-07-13 14:53:59 | 65.39 | 97.1% |
62 | 2023-06-22 23:49:02 | 55.66 | 92.9% |
34 | 2023-06-11 10:47:02 | 65.84 | 98.2% |
30 | 2023-06-08 14:35:59 | 66.58 | 96% |
24 | 2023-06-06 14:42:22 | 61.57 | 96.1% |
10 | 2023-05-26 09:09:00 | 63.43 | 96.5% |