题解 | #派对名单#
派对名单
http://www.nowcoder.com/practice/df1635c672fc407a84838101fc95058f
python3
guest_list = ['Niuniu', 'Niu Ke Le']
for i in range(len(guest_list)):
print(guest_list[i] + ', do you want to come to my celebration party?')
print()
guest_list.insert(0,'GURR')
guest_list.insert(2,'Niumei')
guest_list.append('LOLO')
for j in range(len(guest_list)):
print(guest_list[j] + ', thank you for coming to my celebration party!')
OPPO成长空间 954人发布
