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-02-27 07:55:21 | 70.94 | 96.4% |
23 | 2024-02-06 18:41:21 | 63.35 | 96.2% |
18 | 2024-02-04 18:19:49 | 62.19 | 96.6% |