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 |
---|---|---|---|
11 | 2023-10-08 08:50:09 | 43.38 | 96.4% |
8 | 2023-10-08 08:42:06 | 34.53 | 92.1% |
6 | 2023-10-05 14:44:37 | 34.64 | 93.5% |