Skip to content

Instantly share code, notes, and snippets.

@ShyamaSankar
ShyamaSankar / python_lists.py
Last active May 12, 2024 09:44
Python lists
# Create an empty list using square brackets.
numbers = []
print(numbers) # Output: []
# Create an empty list using list().
numbers = list()
print(numbers) # Output: []
# Create a list of numbers.
numbers = [1, 2, 3]