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 |
---|---|---|---|
13 | 2013-02-06 08:24:10 | 40.48 | 94% |
10 | 2012-11-24 05:56:31 | 41.57 | 95% |
5 | 2012-11-15 08:00:01 | 34.95 | 96% |