Posts by Denis Oliveira • 61 points
1 post
-
6
votes2
answers1649
viewsQ: What is the underscore (or underline _ ) for in the repeating structure?
What this _ ago? Why it is being used in the code snippet below? print('3 numeros') data = [] for _ in range(3): data.append(input()) numbers = list(map(int, data)) print(numbers)…