Posts by PhylthyPhyl • 43 points
1 post
-
4
votes1
answer6347
viewsQ: How to modify an element within a Python list?
I have the following list: pessoa=("Filipe", 40, True) I write the print command for each element: print(pessoa[0]) print(pessoa[1]) print(pessoa[2]) the answers are: Filipe 40 True When I try to…