View Pit Stop page for race #3 by studenttypist2 — Ghost race
View profile for Konigsberg (studenttypist2)
Official speed | 39.90 wpm (46.32 seconds elapsed during race) |
---|---|
Race Start | June 28, 2011 10:49:42am UTC |
Race Finish | June 28, 2011 10:50:28am UTC |
Outcome | No win (1 of 1) |
Accuracy | 90.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") |