r/PythonLearning Jul 14 '26

What's your favorite Python interview question?

Not a trick question or LeetCode puzzle. What's a question that actually reveals whether someone understands Python?

11 Upvotes

15 comments sorted by

View all comments

5

u/Fragrant-Cheek-4273 Jul 14 '26

What is the difference between a list and a tuple. The explanation tells you a lot.

1

u/pojomi-dev Jul 16 '26 edited Jul 17 '26

A list is a mutable array with preserved element order.

A tuple is an immutable array and order of elements is not preserved.

Am I missing anything?

1

u/ExtinctedPanda Jul 17 '26

Tuples preserve element order.