View Pit Stop page for race #18 by aphongz_ — Ghost race
View profile for HCMUS (aphongz_)
Official speed | 45.08 wpm (40.99 seconds elapsed during race) |
---|---|
Race Start | July 3, 2025 8:39:12pm UTC |
Race Finish | July 3, 2025 8:39:53pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 15.78 |
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") |