View Pit Stop page for race #1 by k1rsty — Ghost race
View profile for Kirsty (k1rsty)
Official speed | 27.51 wpm (67.18 seconds elapsed during race) |
---|---|
Race Start | May 20, 2011 10:20:22am UTC |
Race Finish | May 20, 2011 10:21:29am UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.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") |