共计 2050 个字符,预计需要花费 6 分钟才能阅读完成。
3. 程序的组织构造
计算机的根本流程管制由程序构造、抉择构造、循环构造组成
3.1 程序构造
print('--- 开始程序 -----')
print('1. 开始程序')
print('2. 执行代码')
print('3. 编译过程')
print('--- 完结程序')
3.2 抉择构造
对象的布尔值:所有皆对象,所有对象都有布尔值,用内置函数 boo()获取对象的布尔值
以下对象的布尔值为 False
False
数值 0
None
空字符串
空列表
空元组
空字典
空集合
#print("------ 以下对象布尔值为 Flase-----")
print(bool(False))
print(bool(0))
print(bool(0.0))
print(bool(None))
print(bool(''))
print(bool(""))
print(bool([])) #空列表
print(bool(list())) #空列表
print(bool(())) #空元组
print(bool(tuple())) #空元组
print(bool(dict())) #空字典
print(bool(set())) #空集合
3.2.1 单分支构造
语法:
if 条件表达式:条件执行体
money=100
s =int(input(('请输出取款金额')))
if money >=s :
money = money - s
print('取款胜利,余额为:', money)
输入:
请输出取款金额 20
取款胜利,余额为: 80
3.2.2 双分支构造
num=int(input('请输出一个整数'))
#条件判断
if num%2==0:
print(num,'是偶数')
else:
print(num,'是奇数')
3.2.3 多分支构造
语法:
if 条件表达式 1:条件执行体 1
elif 条件表达式 2:条件执行体 2
elif 条件表达式 3:条件执行体 3
[else:]
条件执行体 N +1
"""
多分支构造
从键盘录入一个整数
90-100 A
80-90 B
70-80 C
60-69 D
0-59 E
"""score=int(input(' 请输出一个问题:'))
#判断
if score>=90 and score <=100:
print('A 级')
elif score>=80 and score <=89:
print('B 级')
elif score>=70 and score <=79:
print('C 级')
elif score>=60 and score <=69:
print('D 级')
elif score >=0 and score <=59:
print('E 级')
else:
print('问题输出有误,请从新输出')
或者这种写法:score=int(input('请输出一个问题:'))
if 90<=score <=100:
print('A 级')
elif 80<=score <=89:
print('B 级')
elif 70<=score <=79:
print('C 级')
elif 60<=score <=69:
print('D 级')
elif 50<=score <=59:
print('E 级')
else:
print('问题输出有误,请从新输出')
3.2.3 嵌套构造
语法:
if 条件表达式 1:if 内层条件表达式:内存条件执行体 1
else:
内存条件执行体 2
else:
条件执行体
'''
会员 >=200 8 折
>=100 9 折
非会员 >=200 9.5 折
不打折
'''answer=input(' 您是会员吗?y/n')
money=float(input('请输入您的购物金额:'))
if answer=='y':
if money >=200:
print('打 8 折,付款金额为:',money*0.80)
elif money >=100:
print('打 9 折,付款金额为:',money*0.9)
else:
print('不打折,付款金额为:',money)
else:
if money >=200:
print('打 9.5 折, 付款金额为:',money*0.95)
else:
print('不打折,付款金额为:',money)
3.2.3 条件表达式
语法:
x if 判断条件 else y
如果判断条件的布尔值为 True,条件表达式返回值为 x,否则条件表达式返回 False
'''输出两整数,比拟两个整数大小'''
a=int(input('输出第一个整数'))
b=int(input('输出第二个整数'))
'''
if a>=b:
print(a,'大于等于',b)
else:
print(a,'小于',b)
'''print(' 应用条件表达式比拟 ')
print(str(a)+'大于等于'+str(b) if a>=b else str(a)+'小于'+str(b))
pass 语句
pass 语句只是占位符,和 if 语句的条件执行体,for-in 语句的循环体,定义函数时的函数体
#pass 语句,什么都不做
ans=input('您是会员吗?y/n')
if ans=='y':
pass
else:
pass
以上就是本次分享的全部内容,当初想要学习编程的小伙伴欢送关注 Python 技术大本营,获取更多技能与教程。
正文完