View Pit Stop page for race #5 by nsm101 — Ghost race
View profile for NSM101 (nsm101)
Official speed | 22.35 wpm (82.68 seconds elapsed during race) |
---|---|
Race Start | May 27, 2025 11:10:57am UTC |
Race Finish | May 27, 2025 11:12:19am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 7.82 |
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") |