我需要帮助为我的计算 GCSE NEA(未经检查的评估)处理二维列表,我需要做的是在一行(一首单曲)上显示每首歌曲标题的第一个字母以及艺术家姓名,例如 AC/ DC 'Back in Black' 将是 'B i B' AC/DC
我通常坚持如何操作数组以显示我需要的内容,并且我使用了几个网站,例如 snakify 和其他一些网站
到目前为止,这是我的程序:
stageone=[['another one bites the dust','Queen',
'smoke on the water','Deep Purple',
'Stairway to heaven','Led Zeppelin',
'Carry on wayward son','Kansas',
'Don't stop believin','Journey']]
mainmenu=input("Welcome to the game please select an option-s for start the game,ts for top scores,ys for your scores,n for new game")
if mainmenu=='s':
play=input("do you want to continue you last game-c or do you want to start
a new game-n?")
if play=='s':
difficulty=input("What difficulty do you want to play? you can choose
from; easy,medium,difficult and legend")
if difficulty=='easy':
print("The easy mode of this game contains five stages,each with five
questions")
sure=input("Are you sure you want to play this gamemode?")
if sure=='y':
print(stageone)
我需要这首歌是独立的,而不是整个阵列。每首歌都需要每个单词的第一个字母,而不是整个单词。我不知道如何编写程序的这一部分,我们将不胜感激。歌曲艺人名但必须是完整的而不是单一的,首字母如歌名
哈士奇WWW
相关分类