Python) list, tuple

강현상
Jun 28, 2021

Both list and tuple are to make a group of some type of things:

list: top, tuple: bottom

Difference between two:

words or letters in the tuple are immutable

words or letters in the list are mutable

tuple doesn’t require parenthesis

_______________________________________________________

Could delete, add, or edit the things in the tuple or list:

del example-asw=1,3,4,5
add example-asw=1,2,3
edit example-asw=1,3

--

--