Othmane (boumediane1)

Race #30

View Pit Stop page for race #30 by boumediane1Ghost race

View profile for Othmane (boumediane1)

Official speed 66.58 wpm (27.76 seconds elapsed during race)
Race Start June 8, 2023 2:35:31pm UTC
Race Finish June 8, 2023 2:35:59pm UTC
Outcome Win (1 of 2)
Accuracy 96.0%
Points 23.30
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")