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 |
---|---|---|---|
95 | 2024-06-08 16:00:05 | 21.22 | 92.7% |
79 | 2024-05-30 16:29:04 | 20.84 | 92.7% |
67 | 2024-05-27 14:50:36 | 23.15 | 95% |
44 | 2024-05-25 15:45:21 | 20.71 | 95.4% |
30 | 2024-05-22 15:36:46 | 17.78 | 96.1% |
11 | 2024-05-18 16:13:47 | 15.97 | 93.9% |