Pramesh (pramesh94)

Race #2

View Pit Stop page for race #2 by pramesh94Ghost race

View profile for Pramesh (pramesh94)

Official speed 42.28 wpm (43.71 seconds elapsed during race)
Race Start July 27, 2016 9:26:40am UTC
Race Finish July 27, 2016 9:27:24am UTC
Outcome No win (3 of 4)
Opponents 1. ash1794 (57.97 wpm)
4. harshladha (39.38 wpm)
Accuracy 96.0%
Points 0.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")