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 |
---|---|---|---|
129 | 2024-11-23 02:58:25 | 32.67 | 94.7% |
106 | 2024-05-16 06:55:25 | 29.46 | 92.4% |
60 | 2024-03-22 02:29:00 | 33.04 | 94.9% |
21 | 2024-03-20 01:50:37 | 32.28 | 97.6% |
8 | 2024-03-20 01:21:56 | 20.08 | 94% |
4 | 2024-03-20 01:13:41 | 25.66 | 95.4% |