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 |
---|---|---|---|
10 | 2023-11-21 22:34:20 | 21.62 | 95.1% |
8 | 2023-11-14 15:31:48 | 15.89 | 90.9% |
3 | 2023-11-14 02:51:34 | 17.10 | 93.7% |