how to check size of list in python code example
Example 1: python get the length of a list
studentGrades = [9.1, 8.8, 10.0, 7.7, 6.8, 8.0, 10.0, 8.1, 10.0, 9.9]
print(len(studentGrades))
Example 2: list length in python
list1 = [1,2,3]
print(len(list))
Example 3: length of list python
>>> list = [a, b, c]
>>> len(list)
#output 3
Example 4: how to find length of list python
my_list = [1,2,3,4,5,6,7,8,9,10]
length_of_list = len(my_list)