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 |
---|---|---|---|
5 | 2014-12-24 09:22:43 | 62.60 | 92% |
3 | 2014-12-24 09:20:52 | 54.61 | 88% |
1 | 2014-12-24 09:17:40 | 61.42 | 94% |