from __future__
from __future__ import print_function
from __future__ import division
or
from __future__ import print_function, division
See also future
We cannot import everything that is in future, because we don't know what will be in future in the future.... and we don't want to blindly change the behaviour of Python.