Respuesta :
Answer:
its
for i in range(5, 76, 5):
print(i, end=' ')
print()
Explanation:
it just works
The program which prints values from 5 to 75 with an interval of 5 between each successive numbers can be written in python thus :
for num in range(5, 80, 5):
#a for loop iterates through a range of values between 5 and 80(not inclusive) at an interval of 5
print(num, end =' ')
#for each iterated value, print the number, leave a space and remain on the same line.
A sample output of the program is attached.
Learn more :https://brainly.com/question/22716587