Bootstrap

python的枚举和for循环_python 基础4 分支、循环、条件与枚举

表达式(Expression)是运算符(operator)和操作数(operand)所构成的序列

表达式:

>>> 1+2*3

7

>>> a=1+2+3

>>> a=1

>>> b=int('1')+2

>>>

>>> a=1

>>> b=2

>>> c=3

>>> print(a+b*c)

7

>>> a or b and c                运算符优先级 and >  or

1

>>>

同优先级,从左到右,左结合

but!

>>> c= a+b           右结合,先算等号右边

>>> print(c)

3

>>>

>>> not a or b + 2 ==c

False

>>> (not a) or ((b + 2 )==c)     优先级标注!!!not > and > or

False

>>>

在文本文件中编写Python代码:

IDE  开发环境:pycharm     vscode     sublime

python   编码规范:    tab键  靠缩进来区分代码段

流程控制语句  条件控制   循环控制  分支

if     else    for    while   switch    选择性问题

单行注释 :#       Ctrl+/

多行注释:'''         '''

变量命名规范:小写单词

constant 常量

不要过多的代码嵌套  可以用提取函数的方法

if

"elif="else

if

;