Python 基础(二):基本语句

简介: Python基本语句

1 条件语句

在进行逻辑判断时,我们需要用到条件语句,Python 提供了 ifelifelse 来进行逻辑判断。格式如下所示:

if 判断条件1:
    执行语句1...
elif 判断条件2:
    执行语句2...
elif 判断条件3:
    执行语句3...
else:
    执行语句4...

2 循环语句

当需要多次重复执行时,我们要用到循环语句,Python 提供了 for 循环和 while 循环。

2.1 for 循环

for 循环可以遍历任何序列,比如:字符串。如下所示:

str = 'Python'
for s in str:
    print(s)

输出结果:

P
y
t
h
o
n

2.2 while 循环

while 循环,满足条件时进行循环,不满足条件时退出循环。如下所示:

sum = 0
m = 10
while m > 0:
    sum = sum + m
    m = m - 1
print(sum)

输出结果:

55

2.3 break

break 用在 for 循环和 while 循环语句中,用来终止整个循环。如下所示:

str = 'Python'
for s in str:
    if s == 'o':
        break
    print(s)

输出结果:

P
y
t
h

2.4 continue

continue 用在 for 循环和 while 循环语句中,用来终止本次循环。如下所示:

str = 'Python'
for s in str:
    if s == 'o':
        continue
    print(s)

输出结果:

P
y
t
h
n

3 pass 语句

pass 是空语句,它不做任何事情,一般用做占位语句,作用是保持程序结构的完整性。如下所示:

if True:
    pass
相关文章
|
6月前
|
Python
python中if语句(二)
python中if语句(二)
52 0
|
6月前
|
Python
python中if语句(一)
python中if语句(一)
69 0
|
6月前
|
Python
Python if语句
Python if语句
|
6月前
|
C语言 索引 Python
python语句
python语句
|
3月前
|
索引 Python
Python最常用的函数、基础语句有哪些?你都知道吗
Python最常用的函数、基础语句有哪些?你都知道吗
|
6月前
|
Python
python中if语句(三)
python中if语句(三)
39 0
【Python入门】Python的判断语句(if else 语句)
【Python入门】Python的判断语句(if else 语句)
|
Python
Python for...else... 语句
Python for...else... 语句
|
Python
python(7)--if语句
python(7)--if语句
80 0
python(7)--if语句
|
Python
Python中的While 语句
Python中的While 语句自制脑图
93 0
Python中的While 语句