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 |
---|---|---|---|
22 | 2024-05-02 23:01:26 | 39.75 | 95.5% |
5 | 2024-04-22 22:20:34 | 48.16 | 97.1% |
1 | 2024-04-22 22:13:15 | 42.17 | 98.8% |