PicturingFrames (frame_ability)

Race #167

View Pit Stop page for race #167 by frame_abilityGhost race

View profile for PicturingFrames (frame_ability)

Official speed 69.24 wpm (26.69 seconds elapsed during race)
Race Start September 21, 2022 9:41:53am UTC
Race Finish September 21, 2022 9:42:19am UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 24.24
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")