View Pit Stop page for race #20 by kpraj — Ghost race
| Official speed | 27.67 wpm (66.79 seconds elapsed during race) |
|---|---|
| Race Start | July 5, 2023 4:39:45am UTC |
| Race Finish | July 5, 2023 4:40:52am UTC |
| Outcome | No win (3 of 3) |
| Accuracy | 97.0% |
| Points | 9.68 |
| 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") |