Yami (yamileth)

Race #56

View Pit Stop page for race #56 by yamilethGhost race

View profile for Yami (yamileth)

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