QKhjZtXFyxmvF2 (qkhjztxfyxmvf2)

Race #65

View Pit Stop page for race #65 by qkhjztxfyxmvf2Ghost race

View profile for QKhjZtXFyxmvF2 (qkhjztxfyxmvf2)

Official speed 50.64 wpm (36.49 seconds elapsed during race)
Race Start September 22, 2018 2:27:57pm UTC
Race Finish September 22, 2018 2:28:34pm UTC
Outcome No win (2 of 3)
Accuracy 98.0%
Points 17.72
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")