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 |
---|---|---|---|
99 | 2019-08-19 21:33:50 | 65.96 | 98% |
58 | 2019-04-19 20:11:45 | 63.88 | 98% |
31 | 2019-03-30 07:29:18 | 65.99 | 98% |