View Pit Stop page for race #17 by oliver84 — Ghost race
View profile for Oliver (oliver84)
Official speed | 43.29 wpm (42.69 seconds elapsed during race) |
---|---|
Race Start | October 1, 2015 10:20:02pm UTC |
Race Finish | October 1, 2015 10:20:44pm UTC |
Outcome | No win (3 of 4) |
Opponents |
1. dsat (48.69 wpm) 2. yarrpirate (43.40 wpm) 4. richardgomes7d (43.01 wpm) 5. erh4ua (34.76 wpm) |
Accuracy | 97.0% |
Points | 0.00 |
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") |