Karan Jain (karanjain18)

Race #58

View Pit Stop page for race #58 by karanjain18Ghost race

View profile for Karan Jain (karanjain18)

Official speed 46.50 wpm (39.74 seconds elapsed during race)
Race Start October 4, 2019 2:09:40pm UTC
Race Finish October 4, 2019 2:10:20pm UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 16.28
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")