5-4 外星人颜色#2:像练习5-3那样设置外星人的颜色,并编写一个if-else结构。
(1)如果外星人是绿色的,就打印一条消息,指出玩家因射杀该外星人获得了五个点。
(2)如果外星人不是绿色的,就打印一条消息,指出玩家获得了十个点。
(3)编写这个程序的两个版本,在一个版本中执行if代码块,而在另一个版本中执行else代码块。
第一个版本(执行if代码块):
alien_color='green'
if alien_color == 'green':
print('you have won five points')
第二个版本(执行else代码块):
alien_color='red'
if alien_color == 'green':
print('you have won five points')
else:
print('you have won ten points')
5-5 外星人颜色#3:将练习5-4中的if-else结构变为if-elif-else结构。
(1)如果外星人是绿色的,就打印一条消息,指出玩家获得了5个点。
(2)如果外星人是黄色的,就打印一条信息,指出玩家获得了10个点。
(3)如果外星人是红色的,就打印一条信息,指出玩家获得了15个点。
(4)编写这个程序的三个版本,他们分别在外星人为绿色、黄色和红色时打印一条信息。
alien_color='green'
if alien_color == 'green':
print('you have won five points')
elif alien_color == 'yellow':
print('you have won ten points')
elif alien_color == 'red':
print('you have won fifteen points')
5-6 人生的不同阶段:设置变量age的值,再编写一个if-elif-else结构,根据age的值判断处于人生的哪个阶段。
(1)如果一个人的年龄小于2岁,就打印一条消息,指出他是婴儿。
age=65
if age<2:
print('you are babies')
elif age<4:
print('you are toddlers')
elif age<13:
print('you are children')
elif age<25:
print('you are teenagers')
elif age<65:
print('you are adults')
else:
print('you are olders')
5-7 喜欢的水果:创建一个列表,其中包含你喜欢的水果,再编写一系列独立的if语句,检查列表中是否包含特定的水果。
favorite_fruits=['banana','orange','pomelo']
if 'banana' in favorite_fruits:
print('You really like bananas!')
if 'orange' in favorite_fruits:
print('You really like bananas!')
if 'pomelo' in favorite_fruits:
print('You really like bananas!')
if 'apple' in favorite_fruits:
print('You really like bananas!')
if 'pear' in favorite_fruits:
print('You really like bananas!')