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 |
---|---|---|---|
12 | 2017-09-17 18:02:58 | 56.37 | 94% |
8 | 2017-09-17 17:54:18 | 52.90 | 96% |
4 | 2017-09-17 17:44:15 | 67.43 | 98% |