gpt4 book ai didi

python - python 3 中的 coerce() 等价物

转载 作者:太空宇宙 更新时间:2023-11-03 13:16:46 25 4
gpt4 key购买 nike

coerce() 函数

returns a tuple consisting of the two numeric arguments converted to a common type, using the same rules as used by arithmetic operations

在 Python 3 中已弃用。我想知道 Python 3.x 中是否引入了任何等效函数?

最佳答案

即使不再需要它(因此,如果您不处理遗留代码,也不应该使用它),您也可以这样做:

def coerce(x, y):
t = type(x + y)
return (t(x), t(y))

关于python - python 3 中的 coerce() 等价物,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27522115/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com