Chirag (chirag_2580)

Race #6

View Pit Stop page for race #6 by chirag_2580Ghost race

View profile for Chirag (chirag_2580)

Official speed 41.79 wpm (44.22 seconds elapsed during race)
Race Start February 17, 2024 10:42:05am UTC
Race Finish February 17, 2024 10:42:49am UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 14.63
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")