How to get length of nested list in Python

2 Answers

0 votes
lst = [1, 2, 0, [3, 4, 5, 6], [7, 8]]

print(len(lst))
print(len(lst[3]))
print(len(lst[4]))


'''
run:

5
4
2

'''

 



answered Sep 12, 2018 by avibootz
edited Sep 12, 2018 by avibootz
0 votes
lst = [[1, 2, 3], [4, 5, 6, 7], [8, 9], [0], [0]]

print(len(lst))
print(len(lst[0]))
print(len(lst[1]))
print(len(lst[2]))
print(len(lst[3]))
print(len(lst[4]))

'''
run:

5
3
4
2
1
1

'''

 



answered Sep 12, 2018 by avibootz

Related questions

2 answers 248 views
3 answers 349 views
...