Karan Jain (karanjain18)

Race #475

View Pit Stop page for race #475 by karanjain18Ghost race

View profile for Karan Jain (karanjain18)

Official speed 86.54 wpm (21.35 seconds elapsed during race)
Race Start July 21, 2021 12:58:52pm UTC
Race Finish July 21, 2021 12:59:13pm UTC
Outcome Win (1 of 3)
Accuracy 100.0%
Points 30.29
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")