View Pit Stop page for race #19 by pbnl2 — Ghost race
View profile for ⭐️⭐️⭐️ (pbnl2)
| Official speed | 66.15 wpm (27.94 seconds elapsed during race) |
|---|---|
| Race Start | March 31, 2020 6:46:03pm UTC |
| Race Finish | March 31, 2020 6:46:31pm UTC |
| Outcome | No win (3 of 3) |
| Accuracy | 98.0% |
| Points | 23.15 |
| 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") |