Deepak (deepak_chandani)

Race #1

View Pit Stop page for race #1 by deepak_chandaniGhost race

View profile for Deepak (deepak_chandani)

Official speed 35.56 wpm (51.97 seconds elapsed during race)
Race Start August 1, 2024 8:36:07am UTC
Race Finish August 1, 2024 8:36:59am UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 12.44
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")