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 |
---|---|---|---|
12 | 2013-03-14 13:15:43 | 41.33 | 91% |
10 | 2013-03-12 15:35:17 | 42.15 | 94% |
4 | 2013-03-12 14:53:50 | 40.67 | 94% |