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 |
---|---|---|---|
7 | 2024-02-07 23:48:21 | 34.94 | 92.5% |
1 | 2024-01-18 19:59:07 | 35.63 | 97.5% |