ANDREA (andreaak00)

Race #8

View Pit Stop page for race #8 by andreaak00Ghost race

View profile for ANDREA (andreaak00)

Official speed 80.14 wpm (23.06 seconds elapsed during race)
Race Start September 20, 2017 8:13:44pm UTC
Race Finish September 20, 2017 8:14:07pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 28.05
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")