tanon (tanon710s)

Race #82

View Pit Stop page for race #82 by tanon710sGhost race

View profile for tanon (tanon710s)

Official speed 100.97 wpm (18.30 seconds elapsed during race)
Race Start February 25, 2019 3:04:26pm UTC
Race Finish February 25, 2019 3:04:44pm UTC
Outcome Win (1 of 2)
Opponents 2. permil (95.78 wpm)
Accuracy 98.0%
Points 35.34
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")