View Pit Stop page for race #5 by 9topac — Ghost race
View profile for Topac (9topac)
| Official speed | 40.47 wpm (45.66 seconds elapsed during race) |
|---|---|
| Race Start | March 7, 2012 12:58:38pm UTC |
| Race Finish | March 7, 2012 12:59:24pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 86.0% |
| Points | 0.00 |
| Text | #10002 (Length: 154 characters) 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") |