View Pit Stop page for race #20 by frame_ability — Ghost race
View profile for PicturingFrames (frame_ability)
Official speed | 61.47 wpm (30.06 seconds elapsed during race) |
---|---|
Race Start | June 20, 2022 8:15:24am UTC |
Race Finish | June 20, 2022 8:15:54am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 21.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") |