ishwarendra (ishwarendra)

Race #3

View Pit Stop page for race #3 by ishwarendraGhost race

View profile for ishwarendra (ishwarendra)

Official speed 59.34 wpm (31.14 seconds elapsed during race)
Race Start March 25, 2023 4:54:47pm UTC
Race Finish March 25, 2023 4:55:18pm UTC
Outcome Win (1 of 2)
Accuracy 96.0%
Points 20.77
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")