View Pit Stop page for race #3 by zed0 — Ghost race
Official speed | 52.50 wpm (35.20 seconds elapsed during race) |
---|---|
Race Start | November 23, 2019 12:10:06am UTC |
Race Finish | November 23, 2019 12:10:41am UTC |
Outcome | No win (2 of 2) |
Accuracy | 97.0% |
Points | 18.38 |
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") |