View Pit Stop page for race #4 by dev344 — Ghost race
View profile for Devesh (dev344)
Official speed | 49.96 wpm (36.99 seconds elapsed during race) |
---|---|
Race Start | January 22, 2014 8:12:47am UTC |
Race Finish | January 22, 2014 8:13:24am UTC |
Outcome | No win (2 of 3) |
Opponents |
1. arijit91 (69.42 wpm) 3. sujeetgholap (43.67 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") |