empêcher une fonction de continuer lorsqu'une condition est remplie Python
# use return e.g
def test_function(input):
if input == 5:
return
else:
print(input)
#f you run
test_function(5)
#the function will simply just end
Kipngetich