Which of the following is a standard python library function and not an exclusively list function?
a append()
b remove()
c pop()
d len()
Answers
Answered by
9
len()
Explanation:
You can use the len() to get the length of the given string, array, list, tuple, dictionary, etc.
Similar questions