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 |
---|---|---|---|
8 | 2024-01-30 15:21:35 | 43.00 | 94.1% |
2 | 2024-01-29 14:17:54 | 47.18 | 97.6% |