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 |
---|---|---|---|
3 | 2017-10-16 01:58:10 | 53.57 | 99% |
2 | 2017-10-16 01:56:57 | 42.82 | 94% |