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 |
---|---|---|---|
20 | 2024-03-09 14:53:59 | 36.84 | 91.2% |
16 | 2024-03-09 14:49:28 | 31.24 | 91.6% |
15 | 2024-03-09 14:48:13 | 28.96 | 92.1% |