元组(四)

元组内置函数

  • len(tuple) 计算元组元素个数
>>> tuple1 = ('a', 'b', 'c')
>>> len(tuple1)
3
  • max(tuple) 返回元组中元素最大值
>>> tuple2 = ('5', '4', '8')
>>> max(tuple2)
'8'
  • min(tuple) 返回元组中元素最小值
>>> tuple2 = ('5', '4', '8')
>>> min(tuple2)
'4'
  • tuple(seq) 将列表转换为元组
>>> list1= ['360', 'bing', 'Sougo', 'Baidu']
>>> tuple1=tuple(list1)  # 反过来就是元组转列表
>>> tuple1
('360', 'bing', 'Sougo', 'Baidu')

你可能感兴趣的:(元组(四))