题解 | #派对名单#

派对名单

http://www.nowcoder.com/practice/df1635c672fc407a84838101fc95058f

NP9 派对名单

思路:

step1:对应输出打印即可;

代码如下:

guest_list = ['Niuniu','Niu Ke Le']
print('{}, do you want to come to my celebration party?'.format(guest_list[0]))
print('{}, do you want to come to my celebration party?'.format(guest_list[1]))
guest_list.insert(0,'GURR')
guest_list.insert(2,'Niumei')
guest_list.append('LOLO')
print()
print('{}, thank you for coming to my celebration party!'.format(guest_list[0]))
print('{}, thank you for coming to my celebration party!'.format(guest_list[1]))
print('{}, thank you for coming to my celebration party!'.format(guest_list[2]))
print('{}, thank you for coming to my celebration party!'.format(guest_list[3]))
print('{}, thank you for coming to my celebration party!'.format(guest_list[4]))

全部评论

相关推荐

11-08 17:36
诺瓦科技_HR
点赞 评论 收藏
分享
5 收藏 评论
分享
牛客网
牛客企业服务