PicturingFrames (frame_ability)

Race #170

View Pit Stop page for race #170 by frame_abilityGhost race

View profile for PicturingFrames (frame_ability)

Official speed 74.62 wpm (24.77 seconds elapsed during race)
Race Start September 21, 2022 9:45:05am UTC
Race Finish September 21, 2022 9:45:29am UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 26.12
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")