Iman Ranjbar (imanranjbar)

Race #42

View Pit Stop page for race #42 by imanranjbarGhost race

View profile for Iman Ranjbar (imanranjbar)

Official speed 47.21 wpm (39.14 seconds elapsed during race)
Race Start April 21, 2023 6:07:00pm UTC
Race Finish April 21, 2023 6:07:39pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 16.52
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")