View Pit Stop page for race #114 by hobboloydn — Ghost race
View profile for Charlie (hobboloydn)
Official speed | 50.45 wpm (36.63 seconds elapsed during race) |
---|---|
Race Start | April 18, 2025 10:14:54pm UTC |
Race Finish | April 18, 2025 10:15:31pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 97.0% |
Points | 17.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") |