View Pit Stop page for race #7 by sumit91 — Ghost race
View profile for Sumit (sumit91)
Official speed | 39.89 wpm (46.33 seconds elapsed during race) |
---|---|
Race Start | May 15, 2011 6:14:04am UTC |
Race Finish | May 15, 2011 6:14:50am UTC |
Outcome | No win (3 of 3) |
Accuracy | 85.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") |