View Pit Stop page for race #1 by itsdanerd — Ghost race
View profile for Devin (itsdanerd)
Official speed | 52.70 wpm (35.07 seconds elapsed during race) |
---|---|
Race Start | November 8, 2017 7:07:08pm UTC |
Race Finish | November 8, 2017 7:07:43pm UTC |
Outcome | Win (1 of 2) |
Accuracy | 97.0% |
Points | 18.44 |
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") |