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-09-15 21:28:20 | 73.66 | 96.7% |
24 | 2023-08-02 18:20:58 | 65.44 | 93.3% |
8 | 2023-07-24 21:40:33 | 72.22 | 95.9% |