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-09-08 07:39:37 | 40.50 | 94.7% |
4 | 2023-07-14 06:01:34 | 44.60 | 96% |
1 | 2023-07-14 05:57:35 | 40.64 | 94.2% |