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 |
---|---|---|---|
21 | 2023-08-15 22:32:40 | 96.39 | 97% |
13 | 2018-03-24 13:40:51 | 74.06 | 95% |
10 | 2017-10-22 14:22:24 | 87.56 | 98% |
9 | 2017-10-22 14:21:55 | 84.93 | 97% |
8 | 2017-09-20 20:14:07 | 80.14 | 95% |
6 | 2017-09-07 23:24:03 | 67.97 | 94% |