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 |
---|---|---|---|
4 | 2018-09-02 22:25:15 | 32.90 | 92% |
2 | 2018-09-02 22:22:55 | 30.97 | 93% |
1 | 2018-09-02 22:21:21 | 35.51 | 95% |