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 |
---|---|---|---|
20 | 2015-05-08 18:54:08 | 78.71 | 95% |
17 | 2015-05-08 11:53:29 | 70.28 | 95% |
4 | 2015-05-04 19:01:07 | 53.36 | 90% |