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 |
---|---|---|---|
20 | 2023-06-14 03:05:30 | 29.03 | 95% |
8 | 2023-06-13 10:05:37 | 23.92 | 98% |
7 | 2023-06-13 10:03:45 | 25.26 | 98% |