标签: python
a = (1) b = ('y')
type(a)的输出是int,它不应该是tuple吗?同样,type(b)为str。
type(a)
int
tuple
type(b)
str
如何使圆括号内的单个值成为int或str或float等?
float
答案 0 :(得分:0)
那是因为你没有单元素元组的正确语法:
type((1)) # int type((1,)) # tuple