2 Unicode 和list 列表
Posted 马勇123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2 Unicode 和list 列表相关的知识,希望对你有一定的参考价值。
1 unicode
2 list 列表及其内置函数等
3 不一样的for语句
Python 的 for
语句依据任意序列(链表或字符串)中的子项,按它们在序列中的顺序来进行迭代
>>> # Measure some strings: ... a = [‘cat‘, ‘window‘, ‘defenestrate‘] >>> for x in a: ... print x, len(x) ... cat 3 window 6 defenestrate 12
4 函数定义 关键字def 函数名(函数参数1,函数参数2,...)
以上是关于2 Unicode 和list 列表的主要内容,如果未能解决你的问题,请参考以下文章