View Pit Stop page for race #1 by saifhhasan — Ghost race
View profile for SAIF (saifhhasan)
| Official speed | 61.42 wpm (30.09 seconds elapsed during race) |
|---|---|
| Race Start | December 24, 2014 9:17:10am UTC |
| Race Finish | December 24, 2014 9:17:40am UTC |
| Outcome | Win (1 of 3) |
| Opponents |
2. darshankapashi (54.33 wpm) 3. smit (40.65 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") |