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 |
---|---|---|---|
8 | 2017-05-28 00:05:17 | 62.01 | 97% |
7 | 2017-05-27 20:04:18 | 58.44 | 97% |
4 | 2017-05-27 19:27:11 | 60.70 | 98% |