Lists and collections / Lists

numbers = [123]
length = len(numbers)
# length is 3

print(f"{length = }")