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 |
---|---|---|---|
13 | 2022-11-30 15:41:01 | 20.14 | 93% |
9 | 2022-11-30 14:21:36 | 22.26 | 93% |
7 | 2022-11-30 14:11:10 | 17.98 | 88% |