View Pit Stop page for race #1 by prince7079 — Ghost race
View profile for Parminder (prince7079)
| Official speed | 34.83 wpm (53.06 seconds elapsed during race) |
|---|---|
| Race Start | September 14, 2013 9:53:51am UTC |
| Race Finish | September 14, 2013 9:54:44am UTC |
| Outcome | No win (2 of 3) |
| Accuracy | 87.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") |