View Pit Stop page for race #8 by kenixx — Ghost race
View profile for NOT AN ALT (kenixx)
| Official speed | 77.95 wpm (23.71 seconds elapsed during race) |
|---|---|
| Race Start | November 15, 2017 4:06:42am UTC |
| Race Finish | November 15, 2017 4:07:06am UTC |
| Outcome | Win (1 of 2) |
| Accuracy | 96.0% |
| Points | 27.28 |
| 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") |