View Pit Stop page for race #7 by erh4ua — Ghost race
View profile for Emily (erh4ua)
| Official speed | 44.48 wpm (41.55 seconds elapsed during race) |
|---|---|
| Race Start | September 22, 2015 10:06:47pm UTC |
| Race Finish | September 22, 2015 10:07:28pm UTC |
| Outcome | Win (1 of 2) |
| Opponents |
2. richardgomes7d (30.00 wpm) |
| Accuracy | 96.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") |