View Pit Stop page for race #44 by daniel3131 — Ghost race
View profile for daniel3131 (daniel3131)
| Official speed | 78.01 wpm (23.69 seconds elapsed during race) |
|---|---|
| Race Start | November 9, 2019 9:37:06am UTC |
| Race Finish | November 9, 2019 9:37:30am UTC |
| Outcome | No win (1 of 1) |
| Accuracy | 96.0% |
| Points | 27.30 |
| 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") |