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-12-18 12:49:39 | 59.48 | 91% |
2 | 2012-12-18 12:45:06 | 54.36 | 91% |
1 | 2012-05-14 06:25:03 | 57.04 | 95% |