标签:统计 inf index 创建 取值 关于元组 元素 pre image
关于元组:
元组操作:
info_tuple = ()
info_tuple = (20,)
在创建一个元素的元组时,元素的后面应该加一个逗号,如果忘记加的话,创建的就不是 一个元组而是一个变量,如:
info_tuple = (1, 2, 5)
len(info_tuple)
info_tuple = (1, 2, 5) # 取值 print(info_tuple[1]) # 取索引 print(info_tuple.index(1))
info_tuple = (1, 2, 5, 2) print(info_tuple.count(2))
标签:统计 inf index 创建 取值 关于元组 元素 pre image
原文地址:https://www.cnblogs.com/icebluelp/p/11615686.html