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 |
|---|---|---|---|
| 62 | 2019-02-24 23:42:23 | 66.23 | 94% |
| 60 | 2019-02-24 23:40:47 | 62.06 | 95% |
| 48 | 2019-02-23 22:23:57 | 64.94 | 95% |
| 3 | 2018-11-21 23:16:31 | 57.44 | 95% |