View Pit Stop page for race #240 by beltran_tarqui — Ghost race
View profile for Alex Beltran T. (beltran_tarqui)
Official speed | 32.91 wpm (56.15 seconds elapsed during race) |
---|---|
Race Start | June 26, 2025 9:32:47pm UTC |
Race Finish | June 26, 2025 9:33:43pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 92.0% |
Points | 11.52 |
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") |