列表

详情


NP27. 朋友们的喜好

描述

牛牛有一个name = ['Niumei', 'YOLO', 'Niu Ke Le', 'Mona'] 记录了他最好的朋友们的名字,请创建一个二维列表friends,使用append函数将name添加到friends的第一行。
假如Niumei最喜欢吃pizza,最喜欢数字3,YOLO最喜欢吃fish, 最喜欢数字6,Niu Ke Le最喜欢吃potato,最喜欢数字0,Mona最喜欢吃beef,最喜欢数字3。
请再次创建一个列表food依次记录朋友们最喜欢吃的食物,并将创建好的列表使用append函数添加到friends的第二行;
然后再创建一个列表number依次记录朋友们最喜欢的颜色,并将创建好的列表使用append函数添加到friends的第三行。
这样friends就是一个二维list,使用print函数直接打印这个二维list。

输入描述

输出描述

[['Niumei', 'YOLO', 'Niu Ke Le', 'Mona'], ['pizza', 'fish', 'potato', 'beef'], [3, 6, 0, 3]]

原站题解

Python 解法, 执行用时: 9ms, 内存消耗: 2856KB, 提交时间: 2022-07-19

friends=[]
name = ['Niumei','YOLO','Niu Ke Le','Mona']
friends.append(name)
food = ['pizza','fish','potato','beef']
friends.append(food)
number = [3,6,0,3]
friends.append(number)
print(friends)

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

name = ['Niumei', 'YOLO', 'Niu Ke Le', 'Mona']
hobit = ['pizza', 'fish', 'potato', 'beef']
num = [3, 6, 0, 3]
friend = []
friend.append(name)
friend.append(hobit)
friend.append(num)
print(friend)

Python 解法, 执行用时: 10ms, 内存消耗: 2840KB, 提交时间: 2022-07-26

name=['Niumei','YOLO','Niu Ke Le','Mona']
food=['pizza','fish','potato','beef']
number=[3,6,0,3]
friend=[name,food,number]
print(friend)

Python 解法, 执行用时: 10ms, 内存消耗: 2840KB, 提交时间: 2022-06-09

name = ["Niumei", "YOLO", "Niu Ke Le", "Mona"]
food = ["pizza", "fish", "potato", "beef"]
number = [3, 6, 0, 3]
friends = []
friends.append(name)
friends.append(food)
friends.append(number)
print(friends)

Python 解法, 执行用时: 10ms, 内存消耗: 2844KB, 提交时间: 2022-07-14

name = ['Niumei', 'YOLO', 'Niu Ke Le', 'Mona'] 
food = ['pizza','fish','potato','beef']
number = [3,6,0,3]
friends = []
friends.append(name)
friends.append(food)
friends.append(number)
print(friends)

上一题