View Pit Stop page for race #1 by cezeitar — Ghost race
View profile for 🥑 (cezeitar)
Official speed | 41.51 wpm (44.52 seconds elapsed during race) |
---|---|
Race Start | May 18, 2021 9:10:30pm UTC |
Race Finish | May 18, 2021 9:11:15pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 14.53 |
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") |