View Pit Stop page for race #39 by richardgomes7d — Ghost race
View profile for Ricardo (richardgomes7d)
Official speed | 42.18 wpm (43.81 seconds elapsed during race) |
---|---|
Race Start | September 24, 2015 10:15:30pm UTC |
Race Finish | September 24, 2015 10:16:13pm UTC |
Outcome | No win (6 of 10) |
Opponents |
1. dsat (72.33 wpm) 2. yamileth (62.63 wpm) 3. yarrpirate (54.67 wpm) 4. arturojreal (50.79 wpm) 5. erh4ua (43.30 wpm) 7. iceryda4047 (41.63 wpm) 9. sanzmaxxon (32.27 wpm) |
Accuracy | 94.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") |