Example & Tutorial understanding programming in easy ways.

How we can find the length of the list in Python ?

Code :

l=[1,2,3,4,6,7,1]

print(len(l))

// it will print 7

-Here we use the len() function to find the length of the list Data type

Read More →