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 |
---|---|---|---|
9 | 2024-02-05 15:48:53 | 37.36 | 96.1% |
8 | 2024-02-05 15:47:47 | 37.12 | 94.2% |
2 | 2024-02-05 15:26:53 | 32.00 | 91.6% |