View Pit Stop page for race #29 by timjeffery44 — Ghost race
View profile for (timjeffery44)
Official speed | 50.71 wpm (36.44 seconds elapsed during race) |
---|---|
Race Start | May 7, 2019 4:49:31am UTC |
Race Finish | May 7, 2019 4:50:07am UTC |
Outcome | No win (1 of 1) |
Accuracy | 89.0% |
Points | 17.75 |
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") |