View Pit Stop page for race #47 by rektless — Ghost race
Official speed | 59.39 wpm (31.12 seconds elapsed during race) |
---|---|
Race Start | March 30, 2023 9:20:44pm UTC |
Race Finish | March 30, 2023 9:21:15pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 20.79 |
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") |