view bubblesort/test.py @ 22:4773cc53027b

"bing4desktop-0.240207-5"
author prymula
date Wed, 07 Feb 2024 23:39:14 +0100
parents dcd610585610
children
line wrap: on
line source

#!/usr/bin/env python3

"""
for i int range(0,5):
	print (i)
"""

def func(i):
	if i == 0:
		return
	print(i)
	func(i-1)
	
func(5)