List
- It is mutable,
- The implication of iterations is time-consuming in the list.
- Operations like insertion and deletion are better performed.
- Consumes more memory.
Tuple
- It is immutable,
- Implications of iterations are much faster in tuples.
- Elements can be accessed better.
- Consumes less memory.
Shathana. S.R. Answered question May 27, 2023
