Advertisements
Advertisements
Question
Write the while loop to print the following series:
5, 10, 15, ...100
Code Writing
Advertisements
Solution
i = 5
while i <= 100:
print(i, end=", ")
i += 5shaalaa.com
Is there an error in this question or solution?
