Skip to content

Instantly share code, notes, and snippets.

View ChahalMandeep's full-sized avatar
💭
I may be slow to respond.

Mandeep Chahal ChahalMandeep

💭
I may be slow to respond.
View GitHub Profile
# 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]