115 viewsJune 3, 2023PythonWhat does len() do 0 Malarvizhi M416 June 3, 2023 1 Comment What does len() do Malarvizhi M Posted new comment June 3, 2023 Malarvizhi M commented June 3, 2023 len() is an inbuilt function used to calculate the length of sequences like list, python string, and array. my _list=[1,2,3,4,5] len(my_list) 0 Answers ActiveVotedNewestOldest Register or Login
len() is an inbuilt function used to calculate the length of sequences like list, python string, and array.
my _list=[1,2,3,4,5]
len(my_list)