View Pit Stop page for race #14 by nsm101 — Ghost race
View profile for NSM101 (nsm101)
| Official speed | 20.26 wpm (91.21 seconds elapsed during race) |
|---|---|
| Race Start | June 4, 2025 2:51:31am UTC |
| Race Finish | June 4, 2025 2:53:02am UTC |
| Outcome | No win (3 of 3) |
| Accuracy | 91.0% |
| Points | 7.09 |
| 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") |