View Pit Stop page for race #10 by gokewhoo — Ghost race
View profile for Yerder (gokewhoo)
Official speed | 80.85 wpm (22.86 seconds elapsed during race) |
---|---|
Race Start | June 17, 2025 1:17:04pm UTC |
Race Finish | June 17, 2025 1:17:27pm UTC |
Outcome | No win (1 of 1) |
Accuracy | 95.0% |
Points | 28.30 |
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") |