View Pit Stop page for race #33 by frame_ability — Ghost race
View profile for PicturingFrames (frame_ability)
Official speed | 66.98 wpm (27.59 seconds elapsed during race) |
---|---|
Race Start | June 23, 2022 6:29:27am UTC |
Race Finish | June 23, 2022 6:29:54am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 23.44 |
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") |