Posts by Arthur Carvalho • 23 points
2 posts
-
1
votes3
answers8133
viewsQ: Count number of elements from a python list
I have the following list: lista = [ 'A','B','C','D'] I want you to count the number of elements up to a certain point, I know if you do len(lista) will count all the elements but what I want is for…
pythonasked Arthur Carvalho 23 -
0
votes2
answers2072
viewsQ: how to delete a column in a python csv file
How do I delete a column from a csv file? example: nome;nota;idade joao;10;12 maria;8;13 jose;6;8 to look like this: nome;idade joao;12 maria;13 jose;8 and how do I place a new column from that file…