Abhinav (brainstorm56)

Race #11

View Pit Stop page for race #11 by brainstorm56Ghost race

View profile for Abhinav (brainstorm56)

Official speed 47.93 wpm (38.56 seconds elapsed during race)
Race Start August 29, 2023 4:54:01pm UTC
Race Finish August 29, 2023 4:54:39pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 16.78
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")