. (adarshthapa)

Race #7

View Pit Stop page for race #7 by adarshthapaGhost race

View profile for . (adarshthapa)

Official speed 40.30 wpm (45.86 seconds elapsed during race)
Race Start December 23, 2019 12:09:34pm UTC
Race Finish December 23, 2019 12:10:20pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 14.10
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")