Posts by Mikael Lucas • 21 points
1 post
-
2
votes3
answers10708
viewsA: What is the main difference between a Tuple and a List?
Just complementing, another characteristic of tuples and lists is the addition of unit elements in each one. For example to add the element '4' in each one: st = (1,2,3) # Declaração de tupla st =…