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 |
---|---|---|---|
28 | 2023-07-06 02:35:57 | 51.18 | 94.2% |
21 | 2023-07-05 02:07:53 | 48.28 | 93.2% |
6 | 2023-07-04 20:32:13 | 49.23 | 95.9% |