View Pit Stop page for race #5 by slowcheetah — Ghost race
View profile for tico (slowcheetah)
Official speed | 49.00 wpm (37.71 seconds elapsed during race) |
---|---|
Race Start | December 22, 2017 5:24:39pm UTC |
Race Finish | December 22, 2017 5:25:17pm UTC |
Outcome | No win (2 of 2) |
Accuracy | 96.0% |
Points | 17.15 |
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") |