View Pit Stop page for race #15 by ahmlmh — Ghost race
View profile for Ali Hassaan (ahmlmh)
Official speed | 47.56 wpm (38.86 seconds elapsed during race) |
---|---|
Race Start | December 21, 2012 4:48:59am UTC |
Race Finish | December 21, 2012 4:49:37am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. douglassegatto (64.88 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") |