View Pit Stop page for race #7 by sanzmaxxon — Ghost race
View profile for Greg (sanzmaxxon)
Official speed | 27.44 wpm (67.35 seconds elapsed during race) |
---|---|
Race Start | September 22, 2015 10:19:46pm UTC |
Race Finish | September 22, 2015 10:20:54pm UTC |
Outcome | No win (7 of 2) |
Opponents |
1. dsat (61.44 wpm) 2. yamileth (60.94 wpm) 3. arturojreal (46.23 wpm) 4. iceryda4047 (42.19 wpm) 5. yarrpirate (39.17 wpm) 6. gersch (29.86 wpm) |
Accuracy | 93.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") |