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 |
---|---|---|---|
95 | 2024-02-15 01:16:26 | 67.68 | 99.4% |
88 | 2024-02-11 20:30:12 | 66.89 | 97.1% |
63 | 2024-01-09 21:00:17 | 64.55 | 97% |
50 | 2023-12-20 01:21:36 | 65.08 | 98.2% |
34 | 2023-11-22 00:58:10 | 46.10 | 97.3% |
10 | 2023-10-09 19:14:40 | 47.34 | 95.5% |
9 | 2023-10-09 19:13:25 | 42.49 | 96.7% |
4 | 2023-09-30 16:28:56 | 36.52 | 94.6% |