View Pit Stop page for race #45 by deroche1 — Ghost race
View profile for deroche (deroche1)
| Official speed | 97.62 wpm (18.93 seconds elapsed during race) |
|---|---|
| Race Start | February 16, 2019 5:41:11am UTC |
| Race Finish | February 16, 2019 5:41:30am UTC |
| Outcome | No win (2 of 5) |
| Opponents |
1. sidd_ (116.25 wpm) 3. arc_sec (85.72 wpm) 4. spondulix (66.03 wpm) 5. actuallynonquitforlife (57.44 wpm) |
| Accuracy | 97.0% |
| Points | 34.17 |
| 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") |