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 |
---|---|---|---|
14 | 2021-06-29 01:56:34 | 39.43 | 98% |
2 | 2021-04-16 00:40:17 | 43.64 | 97% |
1 | 2021-04-15 23:05:59 | 42.28 | 97% |