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 |
---|---|---|---|
130 | 2019-11-27 21:14:20 | 102.54 | 97% |
114 | 2019-08-28 23:43:50 | 96.66 | 96% |
100 | 2019-08-12 16:39:59 | 93.20 | 97% |
23 | 2019-08-08 03:23:43 | 90.88 | 97% |
1 | 2019-02-16 05:41:32 | 85.72 | 97% |