View Pit Stop page for race #4 by kpraj — Ghost race
Official speed | 23.91 wpm (77.29 seconds elapsed during race) |
---|---|
Race Start | July 4, 2023 2:24:11am UTC |
Race Finish | July 4, 2023 2:25:29am UTC |
Outcome | No win (3 of 3) |
Accuracy | 92.0% |
Points | 8.37 |
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") |