什么是Python的coerce()用于?

时间:2013-01-23 18:31:25

标签: python type-conversion python-2.x built-in

Python的内置coerce函数有哪些常见用途?如果我不知道数字值as per the documentationtype,我可以看到应用它,但是还存在其他常见用法吗?我猜想在执行算术计算时也会调用coerce(),例如 x = 1.0 +2。它是一个内置函数,所以可能它有一些潜在的常见用法?

2 个答案:

答案 0 :(得分:13)

它是early python的遗留物,它基本上使数字元组成为相同的基础数字类型,例如。

>>> type(10)
<type 'int'>
>>> type(10.0101010)
<type 'float'>
>>> nums = coerce(10, 10.001010)
>>> type(nums[0])
<type 'float'>
>>> type(nums[1])
<type 'float'>

还允许对象与旧类一样使用数字 (这里使用它的一个不好的例子是......)

>>> class bad:
...     """ Dont do this, even if coerce was a good idea this simply
...         makes itself int ignoring type of other ! """
...     def __init__(self, s):
...             self.s = s
...     def __coerce__(self, other):
...             return (other, int(self.s))
... 
>>> coerce(10, bad("102"))
(102, 10)

答案 1 :(得分:2)

Python核心编程说:

  

函数coerce()提供程序员不依赖Python解释器,而是自定义两种数值类型转换。&#34;

e.g。

>>> coerce(1, 2)
(1, 2)
>>>
>>> coerce(1.3, 134L)
(1.3, 134.0)
>>>
>>> coerce(1, 134L)
(1L, 134L)
>>>
>>> coerce(1j, 134L)
(1j, (134+0j))
>>>
>>> coerce(1.23-41j, 134L)
((1.23-41j), (134+0j))