View Pit Stop page for race #1 by obada_yahya — Ghost race
View profile for obada (obada_yahya)
| Official speed | 58.20 wpm (31.75 seconds elapsed during race) |
|---|---|
| Race Start | January 14, 2022 8:06:38am UTC |
| Race Finish | January 14, 2022 8:07:10am UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 96.0% |
| Points | 20.37 |
| 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") |