View Pit Stop page for race #3 by shrikanth — Ghost race
View profile for Shrikanth (shrikanth)
| Official speed | 50.62 wpm (36.51 seconds elapsed during race) |
|---|---|
| Race Start | August 12, 2011 10:24:36pm UTC |
| Race Finish | August 12, 2011 10:25:12pm UTC |
| Outcome | Win (1 of 2) |
| Opponents |
2. miwck (38.23 wpm) |
| 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") |