# 了解常用元组函数
# 1.len()
# 2.max()
# 3.min()
# 4.tuple()
tuple1=('123','abc','你好')
# 1.len()计算元组元素个数
print(len(tuple1))
# 2.max()返回元组中元素最大值
print(max(tuple1))
# 3.min()返回元组中元素最小值
print(min(tuple1))
# 4.tuple()将列表转换为元组
print(tuple(tuple1))
Python练习题——了解常用元组函数
最新推荐文章于 2024-09-14 10:15:00 发布