View Pit Stop page for race #68 by alexey0 — Ghost race
View profile for Alex (alexey0)
Official speed | 35.56 wpm (51.97 seconds elapsed during race) |
---|---|
Race Start | February 28, 2015 1:01:14pm UTC |
Race Finish | February 28, 2015 1:02:06pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.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") |