编程语言
首页 > 编程语言> > 菜鸟的学习之路------Python中的元组

菜鸟的学习之路------Python中的元组

作者:互联网

元组的定义
元组本身不是可变数据类型,没有增加、删除、更改、查看的操作,元组内可以存储任意数据类型。

如果不加逗号,打印出来的数据类型为字符型

元组的特性

运行结果:

math
physic
('english', 'physic')
('math', 'english')
('physic', 'english', 'math')

运行结果:

('134', '145', '98', '134', '145', '98', '134', '145', '98')
('math', 'english', 'physic', 'math', 'english', 'physic')

运行结果:

True
False

运行结果:

math : 134
english : 145
physic : 98
元组的常用方法
t = (1,2.5,False,'python','hello','hello','hello')
print(t.count('hello'))   #判断元素出现的次数
print(t.index(False))     #索引元素出现的次数
元组的应用

####### 元组的赋值,有多少个元素,就有多少个变量接受

t = ('apple','red','500g')
fruit,color,weight = t
print(fruit,color,weight)
运行结果:
apple red 500g

####### 类型的转换
fruit = (‘apple’,‘lemon’,‘bannana’,‘peach’)
fruitli = list(fruit)
fruitli.sort()
print(fruitli)
fruits = sorted(fruit)
print(fruits)

运行结果:
['apple', 'bannana', 'lemon', 'peach']
['apple', 'bannana', 'lemon', 'peach']

标签:Python,菜鸟,元组,object1,physic,english,print,math
来源: https://blog.csdn.net/qq_44251046/article/details/88851766