Question 1 out of 5

    What is the time complexity of the Python list append() operation?

    O(1)

    The append() operation in Python list has a time complexity of O(1), making it a constant time operation.