Posts by O.PJ • 47 points
3 posts
-
3
votes2
answers402
viewsQ: Changing lines of an array - Python Pandas
I have an array and need to change the order of the lines. array([[ 0, 1, 2, 3, 4], [ 5, 6, 7, 8, 9], [10, 11, 12, 13, 14], [15, 16, 17, 18, 19], [20, 21, 22, 23, 24]]) I need it like this: array([[…
-
0
votes2
answers282
viewsQ: Python - Remove elements from a list
I have a list in Python and I want to replace certain elements in it, already try to use the replace mode I found in the documentation, but I did not succeed because it cannot be used in lists. I…
-
1
votes1
answer360
viewsQ: [How to check if my list has letters or words in Pyton]
I have a list in Python and I need to know if it has any words or letters, because I need it to only have numbers def sum_of_products(lista): if type(lista) != int: print("Possui letras") else:…