View Pit Stop page for race #6 by andmarek — Ghost race
View profile for Andrew (andmarek)
Official speed | 55.91 wpm (33.05 seconds elapsed during race) |
---|---|
Race Start | December 3, 2015 2:39:08am UTC |
Race Finish | December 3, 2015 2:39:41am UTC |
Outcome | Win (1 of 2) |
Opponents |
2. mchr1654 (41.84 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") |