Claire (claire_07)

Race #12

View Pit Stop page for race #12 by claire_07Ghost race

View profile for Claire (claire_07)

Official speed 13.73 wpm (134.60 seconds elapsed during race)
Race Start May 31, 2023 10:35:00am UTC
Race Finish May 31, 2023 10:37:14am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 4.80
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")