View Pit Stop page for race #2 by johnlester2010 — Ghost race
View profile for 私はあなたを愛して (johnlester2010)
| Official speed | 21.12 wpm (87.50 seconds elapsed during race) |
|---|---|
| Race Start | May 4, 2011 4:03:11am UTC |
| Race Finish | May 4, 2011 4:04:38am UTC |
| Outcome | No win (3 of 3) |
| Accuracy | 84.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") |