Answers for "list and tuple difference in python"

0

list and tuple difference in 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
Posted by: Guest on April-26-2022

Code answers related to "list and tuple difference in python"

Python Answers by Framework

Browse Popular Code Answers by Language