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