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 |
|---|---|---|---|
| 30 | 2021-10-14 22:16:24 | 61.90 | 98% |
| 20 | 2014-03-09 08:15:48 | 54.78 | 90% |
| 14 | 2014-03-06 12:02:15 | 49.61 | 91% |
| 8 | 2014-03-01 12:00:10 | 41.41 | 86% |
| 7 | 2014-03-01 11:58:58 | 53.92 | 93% |
| 1 | 2014-03-01 11:49:27 | 40.87 | 89% |