View Pit Stop page for race #3 by _johnny_sins_ — Ghost race
View profile for Don't stop when you are tired, (_johnny_sins_)
Official speed | 49.95 wpm (37.00 seconds elapsed during race) |
---|---|
Race Start | May 11, 2018 4:15:46pm UTC |
Race Finish | May 11, 2018 4:16:23pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 93.0% |
Points | 17.48 |
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") |