PYTHON (_chuyuehan)

Race #1

View Pit Stop page for race #1 by _chuyuehanGhost race

View profile for PYTHON (_chuyuehan)

Official speed 32.69 wpm (56.53 seconds elapsed during race)
Race Start July 12, 2023 3:05:17am UTC
Race Finish July 12, 2023 3:06:14am UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 11.44
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")