ahmed (ahmedgouda0)

Race #3

View Pit Stop page for race #3 by ahmedgouda0Ghost race

View profile for ahmed (ahmedgouda0)

Official speed 33.64 wpm (54.93 seconds elapsed during race)
Race Start May 31, 2023 1:06:28am UTC
Race Finish May 31, 2023 1:07:23am UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 11.77
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")