View Pit Stop page for race #7 by pa_w_an — Ghost race
View profile for PAWAN (pa_w_an)
Official speed | 38.23 wpm (48.34 seconds elapsed during race) |
---|---|
Race Start | May 22, 2023 10:56:25am UTC |
Race Finish | May 22, 2023 10:57:13am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 13.38 |
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") |