View Pit Stop page for race #94 by wmamunhossain — Ghost race
View profile for MAMUN (wmamunhossain)
Official speed | 35.31 wpm (52.34 seconds elapsed during race) |
---|---|
Race Start | March 23, 2025 8:40:07am UTC |
Race Finish | March 23, 2025 8:40:59am UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 12.36 |
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") |