View Pit Stop page for race #2 by parlatore1 — Ghost race
View profile for Victor (parlatore1)
| Official speed | 26.17 wpm (70.62 seconds elapsed during race) |
|---|---|
| Race Start | June 18, 2023 6:07:11pm UTC |
| Race Finish | June 18, 2023 6:08:22pm UTC |
| Outcome | No win (3 of 3) |
| Accuracy | 95.0% |
| Points | 9.16 |
| 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") |