View Pit Stop page for race #8 by yamileth — Ghost race
View profile for Yami (yamileth)
| Official speed | 56.45 wpm (32.74 seconds elapsed during race) |
|---|---|
| Race Start | September 3, 2015 10:20:06pm UTC |
| Race Finish | September 3, 2015 10:20:39pm UTC |
| Outcome | No win (2 of 4) |
| Opponents |
1. dsat (57.83 wpm) 3. rbiskupicknight (49.85 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") |