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 |
---|---|---|---|
9 | 2023-06-16 16:55:38 | 38.52 | 94% |
7 | 2023-06-11 16:40:05 | 34.77 | 93% |
6 | 2023-06-11 16:29:20 | 36.66 | 95% |