View Pit Stop page for race #16 by kol123313 — Ghost race
View profile for Adsd (kol123313)
| Official speed | 41.69 wpm (44.33 seconds elapsed during race) |
|---|---|
| Race Start | May 6, 2021 8:08:08pm UTC |
| Race Finish | May 6, 2021 8:08:52pm UTC |
| Outcome | No win (3 of 3) |
| Accuracy | 94.0% |
| Points | 14.59 |
| 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") |