View Pit Stop page for race #21 by samiraarancibia123426 — Ghost race
View profile for samiraarancibia (samiraarancibia123426)
Official speed | 21.30 wpm (86.76 seconds elapsed during race) |
---|---|
Race Start | May 17, 2025 11:50:51pm UTC |
Race Finish | May 17, 2025 11:52:17pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 93.0% |
Points | 7.46 |
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") |