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 |
---|---|---|---|
9 | 2017-10-09 11:11:06 | 74.71 | 98% |
6 | 2017-04-14 02:05:48 | 64.15 | 93% |
3 | 2017-02-18 10:12:58 | 74.37 | 96% |