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 |
---|---|---|---|
16 | 2021-05-06 20:08:52 | 41.69 | 94% |
7 | 2021-05-02 01:49:50 | 53.94 | 94% |
6 | 2021-05-02 01:48:23 | 56.53 | 96% |