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 |
---|---|---|---|
13 | 2024-03-27 15:08:11 | 46.06 | 97% |
8 | 2024-03-27 15:01:56 | 44.96 | 93.3% |
3 | 2024-03-27 14:55:11 | 43.04 | 95.2% |