View Pit Stop page for race #2 by jeffpc — Ghost race
View profile for Jeff (jeffpc)
Official speed | 30.25 wpm (61.09 seconds elapsed during race) |
---|---|
Race Start | February 1, 2011 7:02:14pm UTC |
Race Finish | February 1, 2011 7:03:15pm UTC |
Outcome | No win (5 of 5) |
Opponents |
2. noronham (54.29 wpm) 4. liciti (46.20 wpm) |
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") |