View Pit Stop page for race #60 by frame_ability — Ghost race
View profile for PicturingFrames (frame_ability)
Official speed | 65.43 wpm (28.24 seconds elapsed during race) |
---|---|
Race Start | July 3, 2022 7:19:24am UTC |
Race Finish | July 3, 2022 7:19:53am UTC |
Outcome | No win (2 of 3) |
Accuracy | 93.0% |
Points | 22.90 |
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") |