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 | 2014-12-24 09:22:42 | 65.93 | 95% |
3 | 2014-12-24 09:20:49 | 60.22 | 91% |
1 | 2014-12-24 09:17:44 | 54.33 | 91% |