=
,+
,-
,*
,/
,//
,**
,%
+=
,-=
,*=
==
,!=
,>
,<
,>=
,<=
and
,or
,not
,xor
,nor
in
,not in
&
,|
,^
,~
,<<
,>>
=
m = n = 'Python'
a, b, c = (1, 2, 3)
is
,is not
if condition1: statement_con1 elif condition2: statement_con2 else: statement_con3
pass
语句:空语句,是为了保持程序结构的完整性。pass
不做任何事情,一般用做占位语句。
三元操作符:A = X if condition else Y
for condition: statement_True
range(begin, end, step)
函数:返回一个以 step
为步长从 begin
到 end
左闭右开的序列。
while condition: statement_True
while
和 for
的区别:for
用来遍历,while
用来判断条件。
同步更新于:SP-FA 的博客