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 |
---|---|---|---|
68 | 2023-11-21 12:50:48 | 39.76 | 96.5% |
44 | 2023-10-23 15:51:13 | 36.77 | 96% |
40 | 2023-10-19 10:33:54 | 37.00 | 98.2% |
36 | 2023-10-13 18:14:38 | 41.86 | 99.4% |
19 | 2023-08-31 13:03:30 | 44.84 | 98.2% |
14 | 2023-08-24 15:32:24 | 40.03 | 99.4% |
2 | 2023-08-13 15:08:00 | 33.78 | 98.1% |