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 |
|---|---|---|---|
| 5 | 2011-01-29 19:40:01 | 29.87 | |
| 3 | 2011-01-29 14:05:45 | 28.80 | |
| 1 | 2011-01-29 14:00:38 | 29.15 |