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 |
---|---|---|---|
8 | 2023-09-15 05:42:23 | 48.05 | 92.7% |
6 | 2023-09-15 05:34:46 | 48.24 | 92.1% |
1 | 2023-09-14 15:14:31 | 41.08 | 93.2% |