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