View Pit Stop page for race #142 by tahsin__1 — Ghost race
View profile for Tahsin (tahsin__1)
| Official speed | 45.38 wpm (40.72 seconds elapsed during race) |
|---|---|
| Race Start | May 9, 2025 5:12:30pm UTC |
| Race Finish | May 9, 2025 5:13:10pm UTC |
| Outcome | No win (2 of 3) |
| Accuracy | 96.0% |
| Points | 15.88 |
| 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") |