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 |
---|---|---|---|
32 | 2023-07-09 15:16:44 | 36.28 | 96.2% |
22 | 2023-06-18 15:18:49 | 33.51 | 94.4% |
19 | 2023-06-18 04:50:00 | 34.53 | 94.9% |