Liste et différence de tuple dans Python

Lists are used to store multiple items in a single variable.
Whereas Tuples are also used to store multiple items in a single variable.
The difference between them is that A list is changeable whereas Tuple is unchangeable
and also lists are created with Square Brackets but Tuples are created with Round Brackets
Thomas coder