View Pit Stop page for race #7 by sixtynine_wpm — Ghost race
View profile for manthan (sixtynine_wpm)
Official speed | 69.18 wpm (26.71 seconds elapsed during race) |
---|---|
Race Start | May 18, 2025 9:28:31am UTC |
Race Finish | May 18, 2025 9:28:57am UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 24.21 |
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") |