View Pit Stop page for race #265 by frame_ability — Ghost race
View profile for PicturingFrames (frame_ability)
Official speed | 61.36 wpm (30.12 seconds elapsed during race) |
---|---|
Race Start | October 14, 2022 12:40:07pm UTC |
Race Finish | October 14, 2022 12:40:37pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 92.0% |
Points | 21.48 |
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") |