View Pit Stop page for race #33 by hyper_racer — Ghost race
View profile for kewl (hyper_racer)
Official speed | 54.56 wpm (33.87 seconds elapsed during race) |
---|---|
Race Start | May 1, 2019 4:50:52pm UTC |
Race Finish | May 1, 2019 4:51:26pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 19.10 |
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") |