NP20. 增加派对名单(一)
描述
输入描述
输入多个连续的字符串表示名字,以空格间隔。输出描述
示例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)