get 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: length of list python

thistuple = ("apple", "banana", "cherry")
print(len(thistuple))

Example 3: how to get size of list in python

list_1 = ["Hello", 1, "World", 2]
# if you want length of this lins use len() function
print(len(list_1))

# if you want size in bytes
import sys
print(sys.getsizeof(list_1), "Bytes")

Example 4: length of list python

>>> list = [a, b, c]
>>> len(list)
#output 3

Example 5: python list of size

li = [None] * 5 # [None, None, None, None, None]
li = [0] * 5 # [0, 0, 0, 0, 0]

Example 6: this function returns the length of a list

atoi(“ten”)