今天又去治了牙,太疲劳了,两个半小时,牙质差真的很要命,现在感觉半嘴的牙都没有神经了,珍爱我剩下的几颗好牙吧,好好刷牙,少胡吃海喝。
接着昨天的练习继续。
8-6 城市名 :编写一个名为city_country() 的函数,它接受城市的名称及其所属的国家。这个函数应返回一个格式类似于下面这样的字符串:
"Santiago, Chile"
实现:
def city_country(city,country):
print(city + "," + country)
city_country('Beijing','China')
运行结果:
8-7 专辑 :编写一个名为make_album() 的函数,它创建一个描述音乐专辑的字典。这个函数应接受歌手的名字和专辑名,并返回一个包含这两项信息的字典。使用这个函数创建三个表示不同专辑的字典,并打印每个返回的值,以核实字典正确地存储了专辑的信息。
- 给函数make_album() 添加一个可选形参,以便能够存储专辑包含的歌曲数。
- 如果调用这个函数时指定了歌曲数,就将这个值添加到表示专辑的字典中。调用这个函数,并至少在一次调用中指定专辑包含的歌曲数。**
实现:
def make_album(singer,song,song_number=''):
album = {
'Song':song,
'Singer':singer
}
print("The song is: " + album['Song'].title())
print("The singer is: " + album['Singer'].title())
if song_number != '':
print("The song number is: " + str(song_number))
make_album('mac','lovely girl')
make_album('Tom','my heart')
make_album('andy','young boy',16)
运行结果:
8-8 用户的专辑 :在为完成练习8-7编写的程序中,编写一个while 循环,让用户输入一个专辑的歌手和名称。获取这些信息后,使用它们来调用函数make_album() ,并将创建的字典打印出来。在这个while 循环中,务必要提供退出途径。
实现:
def make_album(singer,song,song_number=''):
album = {
'Song':song,
'Singer':singer
}
print("The song is: " + album['Song'].title())
print("The singer is: " + album['Singer'].title())
if song_number != '':
print("The song number is: " + str(song_number))
while True:
print("Input singer or song, if you input q, we'll exit the game.")
singer = input("Please input the singer: ")
song = input("Please input the song: ")
if singer == 'q' or song == 'q':
break
else:
make_album(singer,song)
运行结果:
** 8-9 魔术师 :创建一个包含魔术师名字的列表,并将其传递给一个名为show_magicians() 的函数,这个函数打印列表中每个魔术师的名字。**
实现:
def show_magicians(name):
magicians = []
magicians.append(name)
for magician in magicians:
print(magician.title())
show_magicians('liuqian')
运行结果:
8-10 了不起的魔术师 :在你为完成练习8-9而编写的程序中,编写一个名为make_great() 的函数,对魔术师列表进行修改,在每个魔术师的名字中都加入字样“the Great”。调用函数show_magicians() ,确认魔术师列表确实变了。
实现:
magicians = []
def show_magicians(name):
magicians.append(name)
make_great()
def make_great():
for magician in magicians:
print("the Great " + magician.title())
show_magicians('liuqian')
运行结果:
Ending.
网友评论