View Pit Stop page for race #49 by concurrent — Ghost race
View profile for account deleted (concurrent)
| Official speed | 61.89 wpm (29.86 seconds elapsed during race) |
|---|---|
| Race Start | April 18, 2020 1:46:28pm UTC |
| Race Finish | April 18, 2020 1:46:58pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 97.0% |
| Points | 21.66 |
| 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") |