View Pit Stop page for race #276 by frame_ability — Ghost race
View profile for PicturingFrames (frame_ability)
Official speed | 69.58 wpm (26.56 seconds elapsed during race) |
---|---|
Race Start | October 18, 2022 1:52:59pm UTC |
Race Finish | October 18, 2022 1:53:25pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 24.35 |
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") |