View Pit Stop page for race #5 by andythedinosaur — Ghost race
View profile for Andy (andythedinosaur)
| Official speed | 77.74 wpm (23.77 seconds elapsed during race) |
|---|---|
| Race Start | April 10, 2017 3:12:14am UTC |
| Race Finish | April 10, 2017 3:12:38am UTC |
| Outcome | Win (1 of 4) |
| Opponents |
2. akk12 (62.62 wpm) 3. sollight (55.91 wpm) |
| Accuracy | 97.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") |