View Pit Stop page for race #143 by tahsin__1 — Ghost race
View profile for Tahsin (tahsin__1)
| Official speed | 32.54 wpm (56.79 seconds elapsed during race) |
|---|---|
| Race Start | May 9, 2025 5:19:00pm UTC |
| Race Finish | May 9, 2025 5:19:56pm UTC |
| Outcome | No win (3 of 3) |
| Accuracy | 96.0% |
| Points | 11.39 |
| 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") |