Adrian Peterson (akosipc)

Race #2

View Pit Stop page for race #2 by akosipcGhost race

View profile for Adrian Peterson (akosipc)

Official speed 53.99 wpm (34.23 seconds elapsed during race)
Race Start August 31, 2017 8:20:48am UTC
Race Finish August 31, 2017 8:21:22am UTC
Outcome No win (5 of 10)
Opponents 1. rstacruz (85.04 wpm)
2. thurginesis (59.77 wpm)
6. stlsixers (52.42 wpm)
9. xerxesregulus (29.14 wpm)
Accuracy 95.0%
Points 18.90
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")