Skip to content

Multiples of Five

Andrew Burke edited this page Apr 3, 2024 · 5 revisions
# Output:
# 5
# 10
# 15
# 20
# 25
# 30
# 35
# 40 ....
# 100

def multiples_of_five(start, stop):
	for num in range(5, 101, 5):
		print(num)
Clone this wiki locally