tanon (tanon710s)

Race #86

View Pit Stop page for race #86 by tanon710sGhost race

View profile for tanon (tanon710s)

Official speed 90.35 wpm (20.45 seconds elapsed during race)
Race Start February 25, 2019 3:08:57pm UTC
Race Finish February 25, 2019 3:09:18pm UTC
Outcome No win (2 of 2)
Opponents 1. permil (98.84 wpm)
Accuracy 96.0%
Points 31.62
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")