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 |
---|---|---|---|
10 | 2017-10-06 23:41:40 | 74.12 | 97% |
8 | 2015-06-13 18:08:48 | 58.96 | 91% |
7 | 2015-06-13 18:07:52 | 48.95 | 90% |