View Pit Stop page for race #11 by sidd_ — Ghost race
| Official speed | 130.34 wpm (14.18 seconds elapsed during race) |
|---|---|
| Race Start | October 3, 2018 5:30:49pm UTC |
| Race Finish | October 3, 2018 5:31:04pm UTC |
| Outcome | No win (2 of 3) |
| Accuracy | 100.0% |
| Points | 45.62 |
| 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") |