a=(1,)b=(1),c=(“1”) 分别是什么类型的数据

(1,)– tuple;

(“1”) – str;

(1) – int;

>>> (2,)
(2,)
>>> (2)
2
>>> ("6")
'6'
>>>

原文地址:https://www.cnblogs.com/sea-stream/p/11189912.html