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 |
---|---|---|---|
40 | 2024-04-20 21:07:38 | 53.75 | 93.8% |
27 | 2023-06-19 23:59:55 | 59.08 | 92.2% |
6 | 2023-06-17 16:57:31 | 67.88 | 96.5% |