View Pit Stop page for race #42 by hobboloydn — Ghost race
View profile for Charlie (hobboloydn)
Official speed | 56.62 wpm (32.64 seconds elapsed during race) |
---|---|
Race Start | April 14, 2025 3:21:24pm UTC |
Race Finish | April 14, 2025 3:21:56pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 19.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") |