另外,你可以将上面代码中的 sys.hexversion!= 50660080 替换为 sys.version_info >= (3, 5)。
在 Python 2.7 中运行输出为:
在Python 3.5中运行输出为:
14.组合多个字符串如果你想拼接列表中的所有 token,那么看看下面的例子就明白了:
>>> test = ['I', 'Like', 'Python', 'automation']
现在我们从上面列表的元素中创建一个字符串:
>>> print ''.join(test) 15.翻转字符串/列表的4种方式
我们会得到结果“nohtyP tseT”。