Python
Posted 屋中人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python相关的知识,希望对你有一定的参考价值。
Python
注释
#Say something NOT IMPORTANT
变量
Python不需要用int, float, double
来define
变量
布尔运算
短路计算。
- 在计算 a and b 时,如果 a 是 False,则根据与运算法则,整个结果必定为 False,因此返回 a;如果 a 是 True,则整个计算结果必定取决与 b,因此返回 b。
- 在计算 a or b 时,如果 a 是 True,则根据或运算法则,整个计算结果必定为 True,因此返回 a;如果 a 是 False,则整个计算结果必定取决于 b,因此返回 b。
所以,Python解释器在做布尔运算时,只要能提前确定计算结果,它就不会往后算了,直接返回结果。
够懒!!
List
创建List
python classmates = [‘Michael‘, ‘Bob‘, ‘Tracy‘]
List的访问
与数组相同,例如classmate[0] = Michael
,此外,List还可以倒序访问,例如classmate[-1] = Tracy
Add
#Say something NOT IMPORTANT
classmate.append("new_classmate") #Add in the END
classmate.insert(1,"new_classmate") #Add in the 2nd location
Delete
#Say something NOT IMPORTANT
classmate.opp() #Delete the FINAL
classmate.insert(1) #Delete the 2nd
Replace
#Say something NOT IMPORTANT
classmate[0] = 'You'
classmate[-1] = 'Me'
Tuple
tuple一旦创建就不能修改
Create
Like List
classmates = ('Michael', 'Bob', 'Tracy')
className = ('Metoo',) #Create single element
Variable Tuple
t = ('a', 'b', ['A', 'B'])
L = t[2]
L[0] = 'hha'
L[1] = 'lla'
以上是关于Python的主要内容,如果未能解决你的问题,请参考以下文章