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 |
---|---|---|---|
38 | 2023-09-27 14:27:38 | 38.58 | 95.7% |
36 | 2023-09-17 07:39:21 | 37.15 | 95.5% |
27 | 2023-08-21 13:19:40 | 39.57 | 96% |