Respuesta :
Answer:
The source code and output is attached
I hope it will help you!
Explanation:


The program prints the numbers between 11 and 35(inclusive) with a maximum of 5 integer values per line. The program written in python 3 goes thus:
for i in range(11, 36):
#for loop iterates through the numbers to be printed, picking each one at a time
print(i, end=' ')
# display the value of each iterated value with the cursor remaining on the same line
if i%5 == 0:
#checks if the value of i leaves a remainder when divided by 5
print()
# if it does the cursor moves to the next line.
The sample run of the program is attached.
Learn more : https://brainly.com/question/14072501
