Question 1 out of 5
Which data structure in Python uses LIFO (Last-In-First-Out) order?
Stack
In Python, the stack data structure follows the Last-In-First-Out (LIFO) order, where the last element added is the first one to be removed.
Added to