adarshdhital007 (adarshdhital007)

Race #5

View Pit Stop page for race #5 by adarshdhital007Ghost race

View profile for adarshdhital007 (adarshdhital007)

Official speed 38.26 wpm (48.30 seconds elapsed during race)
Race Start May 24, 2023 3:33:57pm UTC
Race Finish May 24, 2023 3:34:45pm UTC
Outcome No win (2 of 3)
Accuracy 92.0%
Points 13.39
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")