anupam011 (anupam011)

Race #1

View Pit Stop page for race #1 by anupam011Ghost race

View profile for anupam011 (anupam011)

Official speed 31.19 wpm (59.25 seconds elapsed during race)
Race Start July 26, 2023 10:53:52am UTC
Race Finish July 26, 2023 10:54:52am UTC
Outcome No win (2 of 3)
Accuracy 92.0%
Points 10.92
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")