Shoemaker-Levy 9 (atthetop)

Race #86

View Pit Stop page for race #86 by atthetopGhost race

View profile for Shoemaker-Levy 9 (atthetop)

Official speed 75.09 wpm (24.61 seconds elapsed during race)
Race Start November 1, 2018 6:52:47pm UTC
Race Finish November 1, 2018 6:53:12pm UTC
Outcome No win (2 of 2)
Opponents 1. styrofoam (86.36 wpm)
Accuracy 95.0%
Points 26.28
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")