symbolsnumbers (programmerpractice)

Race #16

View Pit Stop page for race #16 by programmerpracticeGhost race

View profile for symbolsnumbers (programmerpractice)

Official speed 33.17 wpm (55.71 seconds elapsed during race)
Race Start June 1, 2023 5:03:28am UTC
Race Finish June 1, 2023 5:04:24am UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 11.61
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")