View Pit Stop page for race #228 by beltran_tarqui — Ghost race
View profile for Alex Beltran T. (beltran_tarqui)
Official speed | 32.97 wpm (56.05 seconds elapsed during race) |
---|---|
Race Start | June 24, 2025 11:10:44pm UTC |
Race Finish | June 24, 2025 11:11:40pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 11.54 |
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") |