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 |
---|---|---|---|
67 | 2019-05-17 13:07:38 | 24.87 | 96% |
45 | 2019-05-17 08:16:19 | 25.27 | 98% |
27 | 2019-05-16 14:19:22 | 23.50 | 95% |
11 | 2019-05-16 09:15:11 | 23.20 | 96% |
8 | 2019-05-16 09:05:53 | 24.64 | 97% |
3 | 2019-05-16 08:52:21 | 24.60 | 97% |