View Pit Stop page for race #3 by zerox_569 — Ghost race
View profile for ZeroX569 (zerox_569)
Official speed | 31.50 wpm (58.67 seconds elapsed during race) |
---|---|
Race Start | February 7, 2025 4:27:45pm UTC |
Race Finish | February 7, 2025 4:28:43pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 92.0% |
Points | 11.03 |
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") |