View Pit Stop page for race #5 by tyrose7en — Ghost race
View profile for Samuel (tyrose7en)
Official speed | 31.83 wpm (58.06 seconds elapsed during race) |
---|---|
Race Start | December 10, 2012 3:26:36am UTC |
Race Finish | December 10, 2012 3:27:34am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. almondcookie (53.60 wpm) |
Accuracy | 87.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") |