Skip to content

Counter

Andrew Burke edited this page Apr 3, 2024 · 7 revisions

def counter(stop):

for num in range(1, stop + 1):

print(num)

Clone this wiki locally