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 |
---|---|---|---|
14 | 2018-11-08 04:01:39 | 54.47 | 97% |
4 | 2017-06-15 07:09:36 | 53.09 | 98% |
3 | 2016-08-14 10:57:06 | 41.09 | 95% |