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 |
---|---|---|---|
33 | 2023-04-12 16:23:54 | 60.57 | 94% |
32 | 2023-04-12 16:22:54 | 64.37 | 97% |
24 | 2023-04-08 09:59:01 | 62.21 | 97% |