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 | 2012-02-09 05:24:45 | 55.95 | 92% |
2 | 2012-02-09 05:22:13 | 53.65 | 94% |
1 | 2012-02-09 05:21:06 | 48.46 | 94% |