I\'ve seen a similar post here however it refers to Python 2.6 and I was hoping there was an easier way.
From reading the thread it seems the best way is to just re
from __future__ import print_function print = lambda x: sys.stdout.write("%s\n" % x)
Is a nice cheap and dirty hack.