Free Palestine (rollno14)

Race #104

View Pit Stop page for race #104 by rollno14Ghost race

View profile for Free Palestine (rollno14)

Official speed 58.50 wpm (31.59 seconds elapsed during race)
Race Start July 15, 2021 2:37:02pm UTC
Race Finish July 15, 2021 2:37:34pm UTC
Outcome No win (3 of 3)
Accuracy 98.0%
Points 20.48
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")