sdr4wkc48 (sdr4wkc48)

Race #31

View Pit Stop page for race #31 by sdr4wkc48Ghost race

View profile for sdr4wkc48 (sdr4wkc48)

Official speed 47.60 wpm (38.82 seconds elapsed during race)
Race Start February 13, 2023 1:38:02pm UTC
Race Finish February 13, 2023 1:38:41pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 16.66
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")