Skip to content

Countdown

Andrew Burke edited this page Apr 3, 2024 · 5 revisions
def countdown(m, n):
	for num in range (m, n-1, -1):
		print(num)
Clone this wiki locally