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 |
---|---|---|---|
25 | 2018-11-23 22:01:08 | 101.76 | 99% |
17 | 2018-11-21 22:34:25 | 142.45 | 99% |
8 | 2018-10-31 20:07:08 | 112.16 | 99% |