# an empty list using list() constructor
lst1 = list()

# list with integers using list() constructor
lst2 = list([1, 2, 3, 4, 5])

# print the two lists
print(f"Empty list: {lst1}")
print(f"Integer list: {lst2}")