View Pit Stop page for race #7 by gamblr — Ghost race
View profile for Gambler (gamblr)
| Official speed | 34.77 wpm (53.15 seconds elapsed during race) |
|---|---|
| Race Start | June 11, 2023 4:39:12pm UTC |
| Race Finish | June 11, 2023 4:40:05pm UTC |
| Outcome | No win (2 of 3) |
| Accuracy | 93.0% |
| Points | 12.17 |
| 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") |