mehul (mehul22)

Race #9

View Pit Stop page for race #9 by mehul22Ghost race

View profile for mehul (mehul22)

Official speed 32.48 wpm (56.90 seconds elapsed during race)
Race Start July 29, 2023 1:03:09pm UTC
Race Finish July 29, 2023 1:04:06pm UTC
Outcome No win (2 of 2)
Opponents 1. arifardians (35.67 wpm)
Accuracy 94.0%
Points 11.37
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")