spondunoob (spondulix)

Race #34

View Pit Stop page for race #34 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 73.39 wpm (25.18 seconds elapsed during race)
Race Start July 20, 2019 8:29:22pm UTC
Race Finish July 20, 2019 8:29:47pm UTC
Outcome No win (4 of 6)
Opponents 1. sidd_ (127.02 wpm)
2. mako640 (108.35 wpm)
3. keegant (81.43 wpm)
5. storm (69.91 wpm)
6. hyper_racer (68.38 wpm)
Accuracy 97.0%
Points 25.69
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")