El 25 de abril de 2011 16:52, Abraham Zamudio
<[email protected]>escribió:

> Quisiera saber como puedo hacer una función en python que me devuelva un
> array de arrays ,
>
> La sintaxis de esta función seria como sigue :
>
>
> [Matriz_A,Matriz_B,Vector_C] = my_python_function(Matriz1,Vector1)
>
> --
>


def my_python_function(Matriz1, Vector1):
     #
     # calculos
     #
     return [MatrizA, Matriz_B, Vector_C]
_______________________________________________
Python-es mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-es
FAQ: http://python-es-faq.wikidot.com/

Responder a