View Pit Stop page for race #3 by meetdavda — Ghost race
View profile for It's Davda ✅👣 (meetdavda)
| Official speed | 41.57 wpm (44.46 seconds elapsed during race) |
|---|---|
| Race Start | August 19, 2017 2:28:49pm UTC |
| Race Finish | August 19, 2017 2:29:34pm UTC |
| Outcome | Win (1 of 2) |
| Opponents |
2. gerppuli (39.40 wpm) |
| Accuracy | 96.0% |
| Points | 14.55 |
| 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") |