列表

详情


NP23. 删除好友

描述

牛妹有一个坏习惯,一旦与朋友吵架了,她就要删除好友。现在输入一个行多个字符串表示牛妹的朋友,请把它们封装成列表,然后再输入与牛妹吵架的朋友的名字,请使用remove函数帮她从列表中删除这个好友,然后输出完整列表。

输入描述

第一行输入多个字符串表示朋友的名字,以空格间隔。
第二行输入吵架的朋友的名字,必定是第一行中出现的名字。

输出描述

输出删除好友后的完整列表。

示例1

输入:

NiuNiu Niukele NiuNeng
NiuNiu

输出:

['Niukele', 'NiuNeng']

原站题解

Python 解法, 执行用时: 11ms, 内存消耗: 2944KB, 提交时间: 2022-08-02

a=raw_input()
b=raw_input()
c=a.split()
c.remove(b)
print(c)

Python 解法, 执行用时: 12ms, 内存消耗: 2944KB, 提交时间: 2022-08-05

a=raw_input()
l2=[]
for i in a.split():
    l2.append(str(i))
b=raw_input()
l2.remove(b)
print(l2)

Python 解法, 执行用时: 12ms, 内存消耗: 2944KB, 提交时间: 2022-08-01

s = raw_input()
l = s.split()
d = raw_input()
l.remove(d)
print l 

Python 3 解法, 执行用时: 28ms, 内存消耗: 4440KB, 提交时间: 2022-08-06

name = input().split()
a = input()
name.remove(a)
print(name)

Python 3 解法, 执行用时: 28ms, 内存消耗: 4452KB, 提交时间: 2022-07-27

namelist = input().split(" ")
namedel = input()
namelist.remove(namedel)
print(namelist)

上一题