Aman (aman_babu_hemant)

Race #6

View Pit Stop page for race #6 by aman_babu_hemantGhost race

View profile for Aman (aman_babu_hemant)

Official speed 18.75 wpm (98.56 seconds elapsed during race)
Race Start December 3, 2020 8:27:20am UTC
Race Finish December 3, 2020 8:28:59am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 6.56
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")