What is an alternative to execfile in Python 3?
It seems they canceled in Python 3 all the easy way to quickly load a script by removing execfile()
Is there an obvious alternative I'm missing?
Use this exec(open("./filename").read()) instead of this execfile("./filename") to solve execfile python 3