该楼层疑似违规已被系统折叠 隐藏此楼查看此楼
theselectedsongs = []
def you():
theselectedsongs.append('Your time To Shine')
print "已点歌曲如下:"
print theselectedsongs
def better():
theselectedsongs.append('Better than one')
print "已点歌曲如下:"
print theselectedsongs
def good():
theselectedsongs.append('Good life')
print "已点歌曲如下:"
print theselectedsongs
def counting():
theselectedsongs.append('Counting stars')
print "已点歌曲如下:"
print theselectedsongs
def beauty():
theselectedsongs.append('Beauty and a beat')
print "已点歌曲如下:"
print theselectedsongs
def tobe():
theselectedsongs.append('Good to be alive')
print "已点歌曲如下:"
print theselectedsongs
def printmenuone():
while True:
print "-------------------------英语----------------------------"
print " 1: 歌曲名: Your time To Shine 歌手: Andrew Allen "
print " 2: 歌曲名: Better than one 歌手: The Score "
print " 3: 歌曲名: Good life 歌手: G-Eazy "
print " 4: 歌曲名: Counting stars 歌手: Alex Goot"
print " 5: 歌曲名: Beauty and a beat 歌手: Alex Goot"
print " 6: 歌曲名: Good to be alive 歌手: Jason Gray"
print " 0: 返回 "
break
def English():
while True:
printmenuone()
choice = input("请输入你的选择 : ")
if choice == 1:
you()
elif choice == 2:
better()
elif choice == 3:
good()
elif choice == 4:
counting()
elif choice == 5:
beauty()
elif choice == 6:
tobe()
elif choice == 0:
return
break