Kiran (kiran11621)

Race #106

View Pit Stop page for race #106 by kiran11621Ghost race

View profile for Kiran (kiran11621)

Official speed 26.57 wpm (69.55 seconds elapsed during race)
Race Start May 3, 2020 7:39:00am UTC
Race Finish May 3, 2020 7:40:10am UTC
Outcome Win (1 of 2)
Accuracy 94.0%
Points 9.30
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")