Answer to Question #98447 in Python for Tobe
Write a for loop to print the numbers 5, 10, 15 … 75.
Sample Run
5 10 15 20 25 30 35 40 45 50 55 60 65 70 75
1
2019-11-13T04:20:58-0500
n=76
k=5
for i in range(k, n,5):
print(i, end=" ")
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
Python
Comments
Leave a comment