View Pit Stop page for race #231 by frame_ability — Ghost race
View profile for PicturingFrames (frame_ability)
Official speed | 80.06 wpm (23.08 seconds elapsed during race) |
---|---|
Race Start | October 5, 2022 2:46:34pm UTC |
Race Finish | October 5, 2022 2:46:57pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 28.02 |
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") |