#第四十九天 # #元组的创建方式: #如图:
#①直接小括号
a=('python','world',98)
print(a)
print(type(a))
#也可以省略不写
a1='python','world',98
print(a1)
print(type(a1))
#为什么可以省略省略小括号呢
a3=('python')
print(type(a3))
#会发现是字符串类型
#因为只有一个元素的元组必须使用,逗号和小括号
a4=('python',)
print(type(a4))
#②使用内置函数tuple()
b=tuple(('python','world',98))
print(b)
print(type(b))
#空元组创建方式
d=()
print(type(d))
e=tuple()
print(type(e))