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 |
---|---|---|---|
6 | 2017-09-27 04:13:10 | 56.04 | 97% |
3 | 2017-09-27 04:02:26 | 64.16 | 98% |
1 | 2017-09-27 03:59:21 | 53.41 | 97% |