'''第一种创建方式,使用()''' t=('Python','world',98) print(t) print(type(t)) '''第二种创建方式,使用内置函数tuple()''' t1=tuple(('Python','world',98)) #注意需要2个小括号 print(t1) print(type(t1))
('Python', 'world', 98) <class 'tuple'> ('Python', 'world', 98) <class 'tuple'>
#其他创建方式,去掉小括号
"其他创建方式,省略小括号,如为一个元素需加逗号" t2='Python','world',98 print(t2) print(type(t2)) t3='Python', print(t3) print(type(t3)) t4=('Python',) print(t4) print(type(t4))
('Python', 'world', 98) <class 'tuple'> ('Python',) <class 'tuple'> ('Python',) <class 'tuple'>