Posts by thales.marques • 13 points
2 posts
-
1
votes1
answer74
viewsQ: How to generate a new list from another Python list?
I’m having trouble performing list operations in Pyhton. I have a list of values. frequencia = [1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5, 5.5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,…
-
-1
votes2
answers49
viewsA: (python) as I put the go inside def
Python is a language that has no block delimiters, such as C, so indentation is part of your code. In order for the code to be associated with a function, structure or loop it is necessary to give a…