0
All about 2d list?
What are 2d list and how can I take a 2d list as input?
3 Answers
+ 1
lst = [ ]
n = int(input("Enter number of elements : "))
for i in range(0, n):
ele = [input(), int(input())]
lst.append(ele)
print(lst)
+ 1
Yes
0
𝕿𝖍𝖊 𝕲𝖗𝖊𝖆𝖙 𝕾𝖆𝖌𝖆 so 2d list is basically like list in list