ANDREA (andreaak00)

Race #10

View Pit Stop page for race #10 by andreaak00Ghost race

View profile for ANDREA (andreaak00)

Official speed 87.56 wpm (21.11 seconds elapsed during race)
Race Start October 22, 2017 2:22:03pm UTC
Race Finish October 22, 2017 2:22:24pm UTC
Outcome Win (1 of 2)
Accuracy 98.0%
Points 30.65
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")