View Pit Stop page for race #4 by andrew1167 — Ghost race
View profile for [NTM]andrew1167 (andrew1167)
Official speed | 35.06 wpm (52.71 seconds elapsed during race) |
---|---|
Race Start | April 21, 2013 11:31:59pm UTC |
Race Finish | April 21, 2013 11:32:51pm UTC |
Outcome | No win (3 of 3) |
Opponents |
1. vielle (48.66 wpm) |
Accuracy | 81.0% |
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") |