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 |
---|---|---|---|
29 | 2024-08-29 22:08:31 | 26.18 | 97% |
25 | 2024-02-27 00:42:10 | 18.01 | 97.6% |
1 | 2023-07-17 19:37:29 | 19.41 | 96.4% |