Karan Jain (karanjain18)

Race #427

View Pit Stop page for race #427 by karanjain18Ghost race

View profile for Karan Jain (karanjain18)

Official speed 73.49 wpm (25.15 seconds elapsed during race)
Race Start July 16, 2021 9:58:34pm UTC
Race Finish July 16, 2021 9:58:59pm UTC
Outcome No win (2 of 3)
Accuracy 99.0%
Points 25.72
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")