Python 基础 —— from __future__ import

  • 这是 python 2 的概念,显然 python 3 对于 python2 就是 future了
  • 该句必须治愈文件的头部

from __future__ import print_function

指定 file 关键字参数,打印到文件流当然也可以是标准输入输出流

from __future__ import print_function
import sys
print('error happens!', file=sys.stderr)

你可能感兴趣的:(Python 基础 —— from __future__ import)