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