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-21 07:14:35 | 40.14 | 96.5% |
54 | 2023-07-21 06:08:30 | 37.32 | 94.7% |
18 | 2023-07-10 09:32:04 | 39.39 | 97% |
17 | 2023-07-10 09:29:35 | 35.67 | 96.1% |
8 | 2023-07-10 09:05:05 | 32.98 | 96% |
3 | 2023-07-10 08:54:54 | 32.81 | 93.8% |
1 | 2023-07-10 08:48:54 | 33.77 | 94.3% |