View Pit Stop page for race #5 by jeffpc — Ghost race
View profile for Jeff (jeffpc)
Official speed | 35.31 wpm (52.34 seconds elapsed during race) |
---|---|
Race Start | February 1, 2011 7:07:26pm UTC |
Race Finish | February 1, 2011 7:08:19pm UTC |
Outcome | No win (5 of 5) |
Opponents |
1. jpaupore (65.97 wpm) 3. liciti (50.03 wpm) 4. noronham (44.59 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") |