mohit bhawnani (mohit_bhawnani)

Race #21

View Pit Stop page for race #21 by mohit_bhawnaniGhost race

View profile for mohit bhawnani (mohit_bhawnani)

Official speed 31.34 wpm (58.97 seconds elapsed during race)
Race Start January 23, 2025 2:15:47pm UTC
Race Finish January 23, 2025 2:16:46pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 10.97
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")