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 |
---|---|---|---|
30 | 2023-09-05 22:02:56 | 90.04 | 98.2% |
29 | 2023-09-04 19:18:47 | 94.23 | 98.7% |
20 | 2023-08-26 18:50:23 | 77.02 | 96.5% |