Amy (amy10)

Race #1

View Pit Stop page for race #1 by amy10Ghost race

View profile for Amy (amy10)

Official speed 22.71 wpm (81.37 seconds elapsed during race)
Race Start May 24, 2023 1:25:31pm UTC
Race Finish May 24, 2023 1:26:52pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 7.95
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")