View Pit Stop page for race #10 by guda — Ghost race
Official speed | 55.68 wpm (33.19 seconds elapsed during race) |
---|---|
Race Start | January 30, 2011 4:06:01pm UTC |
Race Finish | January 30, 2011 4:06:34pm UTC |
Outcome | No win (6 of 6) |
Opponents |
1. mikuhatsune (83.06 wpm) 2. atenza (66.22 wpm) 3. 2getter (61.02 wpm) 4. badomiso (58.36 wpm) 5. danny45 (57.37 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") |