View Pit Stop page for race #18 by hobboloydn — Ghost race
View profile for Charlie (hobboloydn)
Official speed | 54.15 wpm (34.13 seconds elapsed during race) |
---|---|
Race Start | April 8, 2025 7:58:09pm UTC |
Race Finish | April 8, 2025 7:58:43pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 96.0% |
Points | 18.95 |
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") |