Procédure d'arrêt Python

def some_fuction():
  print("This is all I do!")
  return
# A simple return will end a function
The Rambling Lank