列表

详情


NP20. 增加派对名单(一)

描述

为庆祝驼瑞驰在牛爱网找到合适的对象,驼瑞驰通过输入的多个连续字符串创建了一个列表作为派对邀请名单,在检查的时候发现少了他最好的朋友“Allen”的名字,你能使用append函数将这个名字加到列表末尾吗?添加完成请输出完整列表。

输入描述

输入多个连续的字符串表示名字,以空格间隔。

输出描述

输出添加完Allen后的完整列表。

示例1

输入:

Niuniu Niumei Lucy Niuneng

输出:

['Niuniu', 'Niumei', 'Lucy', 'Niuneng', 'Allen']

原站题解

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

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

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

s = raw_input()
l = s.split()
l.append("Allen")
print l 

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

a=raw_input()
b=a.split(" ")
b.append("Allen")
print(b)

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

s = raw_input()
l = s.split()
l.append("Allen")
print l

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

a= raw_input()
my_list = list(a.split(" "))
my_list.append("Allen")
print(my_list)

上一题