python函数练习题3
编写一个名为 make_album()的函数,它创建一个描述音乐专辑的字典。
这个函数应接受歌手的名字和专辑名,并返回一个包含这两项信息的字典。使用这个函数创建三个表示不同专辑的字典,并打印每个返回的值,以核实字典正确地存储了专辑的信息。
给函数 make_album()添加一个可选形参,以便能够存储专辑包含的歌曲数。如果调用这个函数时指定了歌曲数,就将这个值添加到表示专辑的字典中。调用这个函数,并至少在一次调用中指定专辑包含的歌曲数。在为完成练习 8-7 编写的程序中,编写一个 while 循环,让用户输入一个专辑的歌手和名称。获取这些信息后,使用它们来调用函数make_album(),并将创建的字典打印出来。在这个 while 循环中,务必要提供退出途径。
def make_album(singer_name,album_name,number_of_songs=‘‘): singer_album = {‘singer‘:singer_name,‘album‘:album_name} if number_of_songs: singer_album[‘number_of_songs‘] = number_of_songs return singer_album i=0 while i<3: s_name=input("Please enter the singer name: ") a_name=input("Please enter the album name: ") n_songs=input("Please enter the number of songs: ") m_a_name=make_album(s_name,a_name,n_songs) print(m_a_name) i+=1 while i==3: choice=input("Would you like to enter three more songs?(y or n)") if choice == ‘y‘: i=0 else: break
相关推荐
夜斗不是神 2020-11-17
huavhuahua 2020-11-20
Yasin 2020-11-16
xiaoseyihe 2020-11-16
千锋 2020-11-15
diyanpython 2020-11-12
chunjiekid 2020-11-10
wordmhg 2020-11-06
世事一场大梦 2020-11-17
xiaoseyihe 2020-11-16
Morelia 2020-11-03
CloudXli 2020-11-03
文山羊 2020-10-31
comtop0 2020-10-31
pythonxuexi 2020-10-30
三石 2020-10-29
chaochao 2020-10-27
PythonMaker 2020-10-27