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 |
---|---|---|---|
23 | 2023-01-14 23:29:18 | 65.63 | 97% |
19 | 2020-03-31 18:46:31 | 66.15 | 98% |
17 | 2020-03-31 18:44:24 | 64.58 | 97% |
13 | 2020-03-31 18:37:56 | 63.99 | 96% |
2 | 2019-07-22 19:31:31 | 62.48 | 98% |
1 | 2019-07-22 19:27:25 | 55.11 | 98% |