View Pit Stop page for race #33 by shivindernarr — Ghost race
View profile for Shivinder (shivindernarr)
| Official speed | 63.24 wpm (29.22 seconds elapsed during race) |
|---|---|
| Race Start | April 21, 2018 7:46:46am UTC |
| Race Finish | April 21, 2018 7:47:15am UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 99.0% |
| Points | 22.13 |
| 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") |