View Pit Stop page for race #165 by tahsin__1 — Ghost race
View profile for Tahsin (tahsin__1)
| Official speed | 45.69 wpm (40.45 seconds elapsed during race) |
|---|---|
| Race Start | May 18, 2025 4:23:23pm UTC |
| Race Finish | May 18, 2025 4:24:03pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 96.0% |
| Points | 15.99 |
| 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") |