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 |
---|---|---|---|
42 | 2023-12-31 02:41:05 | 28.70 | 94.3% |
29 | 2023-12-27 01:56:09 | 30.34 | 94.9% |
3 | 2023-12-24 04:39:10 | 25.20 | 93.3% |