View Pit Stop page for race #12 by blakee — Ghost race
View profile for Blake (blakee)
Official speed | 29.29 wpm (63.09 seconds elapsed during race) |
---|---|
Race Start | February 11, 2016 12:16:52pm UTC |
Race Finish | February 11, 2016 12:17:55pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. isaac113 (37.18 wpm) |
Accuracy | 97.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") |