Question

Complete the Python function to return the number of elements in a given list. def get_list_length(my_list):     _________ # Line to complete

A return my_list.size()
B return my_list.length
C return len(my_list)
D return my_list.count()
E return my_list.capacity
Practice Next

Hey! Ask a query