View Pit Stop page for race #1 by ahmad_mahmoud2005 — Ghost race
View profile for Mercurial (ahmad_mahmoud2005)
Official speed | 41.89 wpm (44.12 seconds elapsed during race) |
---|---|
Race Start | January 16, 2025 12:38:49am UTC |
Race Finish | January 16, 2025 12:39:33am UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 14.66 |
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") |