View Pit Stop page for race #138 by liz_mariela — Ghost race
View profile for Liz Mariela Perez Gervacio (liz_mariela)
Official speed | 22.65 wpm (81.59 seconds elapsed during race) |
---|---|
Race Start | July 4, 2025 2:57:08am UTC |
Race Finish | July 4, 2025 2:58:30am UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 7.93 |
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") |