__future__

旧的版本中试验新版本的一些特性

from __future__ import division

print '\'xxx\' is unicode?', isinstance('xxx', unicode)

from __future__ import unicode_literals

print '10 / 3 =', 10 / 3

posted on 2016-10-26 13:36  chinxfin  阅读(78)  评论(0编辑  收藏  举报

导航