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-09-10 09:46:29 | 32.98 | 95.1% |
124 | 2024-08-08 04:11:11 | 30.24 | 92.3% |
111 | 2024-06-26 08:11:48 | 35.48 | 96.4% |
83 | 2024-05-13 12:11:11 | 32.46 | 94.6% |
80 | 2024-05-09 00:30:19 | 29.10 | 92.6% |
18 | 2024-03-24 23:07:51 | 28.74 | 92.6% |
8 | 2024-02-02 09:48:42 | 27.20 | 92.2% |