How do you add elements to a list in Python?
In Python, you can use the append() method to add new elements to a list. For example:
my_list = [1, 2, 3, 4]
my_list.append(5)
print(my_list)
This will result in:
[1, 2, 3, 4, 5]
Additionally, you can also use the insert() method to insert elements into a specific position in the list. For example:
my_list = [1, 2, 4, 5]
my_list.insert(2, 3)
print(my_list)
This will result in:
[1, 2, 3, 4, 5]