列表

详情


NP21. 增加派对名单(二)

描述

为庆祝驼瑞驰在牛爱网找到合适的对象,驼瑞驰通过输入的多个连续字符串创建了一个列表作为派对邀请名单,在检查的时候发现少了他最好的朋友“Allen”的名字,因为是最好的朋友,他想让这个名字出现在邀请列表的最前面,你能用insert函数帮他实现吗?请输出插入后的完整列表。

输入描述

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

输出描述

输出插入名字后的完整列表。

示例1

输入:

Niuniu Niumei Lucy

输出:

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

原站题解

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

a=raw_input()
b=a.split(" ")
b.insert(0,"Allen")
print(b)

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

a = raw_input()
my_list = list(a.split(" "))
my_list.insert(0, "Allen")
print my_list

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

s = raw_input()
l = s.split()
l.insert(0,"Allen")
print l 

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

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

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

a = raw_input().split()
a.insert(0,'Allen')
print(a)

上一题