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 |
---|---|---|---|
42 | 2019-02-25 14:28:53 | 84.83 | 97% |
37 | 2019-02-25 14:22:30 | 94.06 | 98% |
35 | 2019-02-25 14:20:58 | 97.11 | 96% |
34 | 2019-02-25 14:20:30 | 87.59 | 97% |
30 | 2019-02-25 14:16:30 | 86.24 | 97% |
10 | 2019-02-25 13:57:35 | 70.37 | 96% |