View Pit Stop page for race #9 by sujeetgholap — Ghost race
View profile for Sujeet (sujeetgholap)
Official speed | 56.13 wpm (32.92 seconds elapsed during race) |
---|---|
Race Start | January 22, 2014 8:24:50am UTC |
Race Finish | January 22, 2014 8:25:23am UTC |
Outcome | No win (2 of 3) |
Opponents |
3. dev344 (44.65 wpm) 4. arijit91 (44.16 wpm) |
Accuracy | 95.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") |