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 |
---|---|---|---|
38 | 2024-02-23 18:30:30 | 19.50 | 89.6% |
21 | 2024-02-16 16:07:36 | 16.33 | 88% |
11 | 2024-02-16 15:07:44 | 17.26 | 85.3% |