Karan Jain (karanjain18)

Race #53

View Pit Stop page for race #53 by karanjain18Ghost race

View profile for Karan Jain (karanjain18)

Official speed 51.43 wpm (35.93 seconds elapsed during race)
Race Start October 3, 2019 4:22:10pm UTC
Race Finish October 3, 2019 4:22:46pm UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 18.00
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")