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 |
---|---|---|---|
59 | 2023-08-10 03:06:32 | 68.26 | 92.8% |
57 | 2023-08-09 08:46:57 | 78.84 | 97.1% |
47 | 2023-08-09 06:49:41 | 77.61 | 96.6% |