View Pit Stop page for race #4 by oliver84 — Ghost race
View profile for Oliver (oliver84)
| Official speed | 37.31 wpm (49.53 seconds elapsed during race) |
|---|---|
| Race Start | September 3, 2015 10:10:56pm UTC |
| Race Finish | September 3, 2015 10:11:46pm UTC |
| Outcome | No win (3 of 4) |
| Opponents |
2. rbiskupicknight (50.73 wpm) |
| Accuracy | 91.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") |