蓝绝

博客园 首页 新随笔 联系 订阅 管理

 

'''第一种创建方式,使用()'''
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'>

 

posted on 2022-09-02 10:09  蓝绝  阅读(42)  评论(0编辑  收藏  举报