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-03-17 19:26:59 | 43.49 | 93% |
3 | 2014-03-17 19:25:38 | 46.33 | 96% |
2 | 2014-03-17 19:24:12 | 38.00 | 93% |