View Pit Stop page for race #3 by ahmed_salama — Ghost race
View profile for Ahmed (ahmed_salama)
Official speed | 53.23 wpm (34.72 seconds elapsed during race) |
---|---|
Race Start | November 9, 2012 8:35:28pm UTC |
Race Finish | November 9, 2012 8:36:02pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. yousef_salama (56.54 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") |