View Pit Stop page for race #7 by alexanderwu68 — Ghost race
View profile for Alexander (alexanderwu68)
Official speed | 44.30 wpm (41.72 seconds elapsed during race) |
---|---|
Race Start | May 31, 2018 6:08:50am UTC |
Race Finish | May 31, 2018 6:09:32am UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 15.50 |
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") |