View Pit Stop page for race #3 by gerppuli — Ghost race
View profile for Atte (gerppuli)
| Official speed | 39.40 wpm (46.90 seconds elapsed during race) |
|---|---|
| Race Start | August 19, 2017 2:28:49pm UTC |
| Race Finish | August 19, 2017 2:29:36pm UTC |
| Outcome | No win (2 of 2) |
| Opponents |
1. meetdavda (41.57 wpm) |
| Accuracy | 93.0% |
| Points | 13.79 |
| 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") |