#元组数据类型与列表相似,但其不可改变,输入时使用()而不是[]
>>> type(('hello',)) #当元组中只有一个值时,括号内该值后面带逗号,表面其为元组数据 <class 'tuple'>
>>> type(('hello')) #未加逗号,被Python识别为字符串 <class 'str'>
标签:值时,数据类型,元组,逗号,type,hello From: https://www.cnblogs.com/lucass/p/17120742.html
#元组数据类型与列表相似,但其不可改变,输入时使用()而不是[]
>>> type(('hello',)) #当元组中只有一个值时,括号内该值后面带逗号,表面其为元组数据 <class 'tuple'>
>>> type(('hello')) #未加逗号,被Python识别为字符串 <class 'str'>
标签:值时,数据类型,元组,逗号,type,hello From: https://www.cnblogs.com/lucass/p/17120742.html