View Pit Stop page for race #1 by electrophile — Ghost race
View profile for Ivan (electrophile)
| Official speed | 58.71 wpm (31.48 seconds elapsed during race) |
|---|---|
| Race Start | January 6, 2018 3:33:40pm UTC |
| Race Finish | January 6, 2018 3:34:12pm UTC |
| Outcome | Win (1 of 2) |
| Opponents |
2. mey1801 (30.20 wpm) |
| Accuracy | 98.0% |
| Points | 20.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") |