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