Respuesta :

Answer:

def main():

 for i in range(10,1010,10):

   print(str(i))

main()

Explanation:

def main(): # Creates main function

 for i in range(10,1010,10): # is an iteration that starts at 10, ends at 1010 and skips 10 numbers per iteration

   print(str(i)) # Outputs each multiple of 10

main() # Calls the main function

Hope this helps :)

ACCESS MORE