On Wed, Apr 11, 2012 at 12:27 PM, Raúl Cumplido <[email protected]> wrote:
> Cual es la ventaja de divmod?
>
> Gracias,
>
Es lo mismo solo que en una linea:
divmod(...)
divmod(x, y) -> (div, mod)
Return the tuple ((x-x%y)/y, x%y). Invariant: div*y + mod == x.
> Raúl
>
> El 11/04/2012 18:50, "Chema Cortes" <[email protected]> escribió:
>>
>> El 11 de abril de 2012 17:33, Juan Carlos Coruña <[email protected]>
>> escribió:
>>>
>>> Que te parece:
>>>
>>> >>> int(7406.723664) / 100
>>> 74
>>> >>> 7406.723664 % 100
>>> 6.723664000000099
>>>
>>
>> Para ésto, me gusta más usar divmod
>>
>> >>> divmod( 7406.723664, 100)
>>
>>
>>
>> --
>> Hyperreals *R: http://ch3m4.org/blog
>> Quarks, bits y otras criaturas infinitesimales
>>
--
Rafael Laverde
http://gplus.to/leafar91
_______________________________________________
Python-es mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-es
FAQ: http://python-es-faq.wikidot.com/