Aditya Prakash (typist2)

Race #7

View Pit Stop page for race #7 by typist2Ghost race

View profile for Aditya Prakash (typist2)

Official speed 39.66 wpm (46.60 seconds elapsed during race)
Race Start January 13, 2012 9:17:50am UTC
Race Finish January 13, 2012 9:18:37am UTC
Outcome Win (1 of 3)
Accuracy 90.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")