Nathan (thecodingwizard)

Race #5

View Pit Stop page for race #5 by thecodingwizardGhost race

View profile for Nathan (thecodingwizard)

Official speed 83.12 wpm (22.23 seconds elapsed during race)
Race Start June 5, 2023 4:29:30am UTC
Race Finish June 5, 2023 4:29:52am UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 29.09
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")