View Pit Stop page for race #6 by trishmapow2 — Ghost race
View profile for Chris (trishmapow2)
Official speed | 64.15 wpm (28.81 seconds elapsed during race) |
---|---|
Race Start | April 14, 2017 2:05:19am UTC |
Race Finish | April 14, 2017 2:05:48am UTC |
Outcome | No win (2 of 3) |
Accuracy | 93.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") |