Emily (erh4ua)

Race #16

View Pit Stop page for race #16 by erh4uaGhost race

View profile for Emily (erh4ua)

Official speed 43.30 wpm (42.68 seconds elapsed during race)
Race Start September 24, 2015 10:15:30pm UTC
Race Finish September 24, 2015 10:16:12pm UTC
Outcome No win (5 of 10)
Opponents 1. dsat (72.33 wpm)
2. yamileth (62.63 wpm)
3. yarrpirate (54.67 wpm)
4. arturojreal (50.79 wpm)
6. richardgomes7d (42.18 wpm)
7. iceryda4047 (41.63 wpm)
9. sanzmaxxon (32.27 wpm)
Accuracy 91.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")