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 | 2017-03-20 00:41:31 | 43.71 | 94% |
13 | 2017-03-20 00:29:06 | 40.99 | 91% |
11 | 2017-03-19 03:43:04 | 42.93 | 95% |