6 在Python 2.6中使用unicode_literals有任何陷阱吗? 我们已经获得了在Python 2.6下运行的代码库。为了准备Python 3.0,我们开始添加: 从__future__导入unicode_literals 进入我们的.py文件(我们对其进行修改)。我想知道是否还有其他人正在这样做并且遇到了任何非显而易见的陷阱(也许在花费大量时间进行调试之后)。 101 python unicode python-2.6 unicode-literals