Yuhang (yuhang0722)

Race #27

View Pit Stop page for race #27 by yuhang0722Ghost race

View profile for Yuhang (yuhang0722)

Official speed 91.64 wpm (20.17 seconds elapsed during race)
Race Start August 6, 2023 9:16:15am UTC
Race Finish August 6, 2023 9:16:35am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 32.07
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")