第一次学习Python写代码容易按照c++的写法写,因此做个联系,俗话说的好熟能生巧,正好有空闲时间联系一下。
Python中的控制语句大致分为条件语句和循环语句,前者为if语句,后者为for语句或者while语句。
python
##############################
##作者:白雪公主的后妈
##时间:2024年12月27日
##主题:控制语句学习
##############################
##if语句
##单一判断if语句
score = 85
if score >= 60:
print("及格")
else:
print("不及格")
##多个条件判断if语句
score = 55
if score >= 80:
print("优秀")
elif (score >= 60) and (socre < 80):
print("及格")
else:
print("不及格")
##for语句
class1 = ["李白", "王维", "孟浩然", "王昌龄", "王之涣"]
for i in class1:
print(i)
##while语句
a=1
while a < 10:
print(a)
a+=1
##控制语句中的嵌套
##例子1
math=95
chinese=80
if math>=90:
if chinese>=90:
print("优秀")
else:
print("加油")
else:
print("加油")
for j in range(5):
if j==3:
print("加油")
else:
print("安静")