View Pit Stop page for race #3 by ankit2313 — Ghost race
View profile for Ankit (ankit2313)
Official speed | 25.72 wpm (71.85 seconds elapsed during race) |
---|---|
Race Start | January 16, 2015 12:02:40pm UTC |
Race Finish | January 16, 2015 12:03:52pm UTC |
Outcome | No win (3 of 4) |
Opponents |
1. nikitsaraf (48.82 wpm) 2. hirak (30.06 wpm) |
Accuracy | 81.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") |