Rana (rana_1996)

Race #138

View Pit Stop page for race #138 by rana_1996Ghost race

View profile for Rana (rana_1996)

Official speed 27.48 wpm (67.25 seconds elapsed during race)
Race Start December 7, 2019 8:57:14pm UTC
Race Finish December 7, 2019 8:58:21pm UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 9.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")