编程语言通常包含三大控制结构:包含顺序结构,选择结构和循环结构:
其中:
顺序结构为一句跟着一句执行:
选择结构为通过条件判断,最终选择出所需要的结果:
揗环结构为通过重复有规律性的操作。
选择结构:
最为常用的语句为if语句:如下:
#!/usr/bin/python 仅用于LINUX或者UNIX环境下,类似于WINDOWS中设置的环境变量。
#encoding=utf-8 (中文编码)
x=1
if(x>0):
print(x)
StudentScore = int(input(‘Scores of students:’))
if(StudentScore < 60):
print (‘no pass’)
if(60<=StudentScore<80):
print (‘good’)
if(StudentScore>=80):
print (‘excelent’)
循环结构:FOR循环
FOR循环一般用于有明显边界范围的情况。
常用代码如下:
#coding=utf-8
Sum = 0
for i in range(1,101):
Sum = Sum + i
else:
print ‘Sum=’,Sum
循环结构:WHILE循环
WHILE循环一般用于循环次数难以确定的情况下:
常用代码如下:
#coding=utf-8
x = int(input(‘x=’))
Sum = 0
while x!=0:
Sum = Sum + x
x = x-1
else:
print ‘sum:’,Sum
来源:freebuf.com 2021-06-29 13:57:53 by: 知非知非知非
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
喜欢就支持一下吧
请登录后发表评论
注册