View Pit Stop page for race #3 by sshossain — Ghost race
View profile for Soraya (sshossain)
Official speed | 47.22 wpm (39.14 seconds elapsed during race) |
---|---|
Race Start | August 12, 2011 9:28:44pm UTC |
Race Finish | August 12, 2011 9:29:23pm UTC |
Outcome | Win (1 of 3) |
Opponents |
4. mavcunha (32.78 wpm) |
Accuracy | 92.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") |