# There are two common methods to create an empty list x = list() print(len(x)) # Output: 0 y = [] print(len(x)) # Output: 0