Sugeeth (sugeeth14)

Race #1

View Pit Stop page for race #1 by sugeeth14Ghost race

View profile for Sugeeth (sugeeth14)

Official speed 38.08 wpm (48.53 seconds elapsed during race)
Race Start July 24, 2023 4:06:11am UTC
Race Finish July 24, 2023 4:06:59am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 13.33
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")