View Pit Stop page for race #23 by arturojreal — Ghost race
View profile for Arturo (arturojreal)
Official speed | 62.82 wpm (29.42 seconds elapsed during race) |
---|---|
Race Start | September 26, 2015 3:50:18pm UTC |
Race Finish | September 26, 2015 3:50:47pm UTC |
Outcome | Win (1 of 3) |
Opponents |
2. yarrpirate (42.94 wpm) |
Accuracy | 96.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") |