Python Language
Usando bucles dentro de funciones
Buscar..
Introducción
En Python, la función se devolverá tan pronto como la ejecución llegue a la declaración de "retorno".
Declaración de retorno dentro del bucle en una función
En este ejemplo, la función regresará tan pronto como el valor var tenga 1
def func(params):
for value in params:
print ('Got value {}'.format(value))
if value == 1:
# Returns from function as soon as value is 1
print (">>>> Got 1")
return
print ("Still looping")
return "Couldn't find 1"
func([5, 3, 1, 2, 8, 9])
salida
Got value 5
Still looping
Got value 3
Still looping
Got value 1
>>>> Got 1
Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow