Pyrhon list.remove(x)无效,x未在列表中找到

时间:2017-11-20 11:25:04

标签: python

当我运行此代码时,我希望在打印列表后打印'miller'。 'Miller'显示在列表中,请帮助我理解为什么list.remove()找不到'miller'。

guest_list = []
guest_list.append('dostoevsky')
guest_list.append('miller')
guest_list.append('wallace')
guest_list.append('vonnegut')
print(guest_list)

cannot_come = guest_list.remove('miller')
print(cannot_come)

['dostoevsky','miller','wallace','vonnegut']

0 个答案:

没有答案