标签: python apply
在python中,
apply (math.sqrt ,(4))
(或其他单个参数函数) 返回
TypeError: apply() arg 2 expected sequence, found int
知道为什么吗? 感谢
答案 0 :(得分:3)
来自docs:
the args argument must be a sequence.
(4)不是序列,只是4。要制作长度为1的元组,请使用(4,)。
(4)
4
(4,)