二.元組
一.列表
1.列表的其他操作
1.insert
list = [1,2,3,4,5]
list.insert(0,3)
print(list)
2.extend
list.extend("hello")
print(list)
3.del
list_1 = [2,1,6,3,4,2]
del list_1[5]
print(list_1)
4.pop
num = list_1.pop(1)
print(list_1)
list_1.pop()
print(list_1)
5.clear
list_3 = [0,2,4]
list_3.clear()
print(list_3)
6.index
suoyin = list_1.index(6,0,5)
print(suoyin)
7.count
list_2 = [3,2,3,4,5]
num_1 = list_2.count(3)
print(num_1)
8.reverse
list_2.reverse()
print(list_2)
二.元組
1.元組的基本使用
元組與列表的最大區別是: 元組不能進行修改,只能查詢
tuple_1=(1,2,3,4,5)
print(tuple_1[2])
print(tuple_1.index(3,2,4))
num = tuple_1.count(4)
print(num)
print(len(tuple_1))
if 3 in tuple_1:
print("在元組中")
else:
print("不在元組中")
2.元組的使用場景列表轉化成元組,防止資料被修改
list_2 = [ 1,2,3,4]
tuple_1 = tuple(list_2)
print(tuple_1)
元組轉化成列表
tuple_2 = (1,2,3,4)
list_1 = list(tuple_2)
print(list_1)
格式化字串
price = 7.5
weight = 8.5
info_tuple = (price,weight)
print("**是%s,重量是%s" % info_tuple)
str1 = "**是%s,重量是%s" % info_tuple
print(str1)
Python基礎 列表和元組
判斷列表中是否含有某元素 if element in list orif element not in list dir dir list add class contains delattr delitem delslice doc eq format ge getattribute getite...
python基礎知識 列表和元組
1.序列 python中的序列包含6種,分別是列表,元組,字串,unicode字串,buffer物件,xrange物件。1.1通用序 列操作 包括 索引 index 分片 slicing 加 adding 乘 multiplying 檢查成員資格,計算序列長度,找出最大元素,最小元素。我們用列表來說...
Python列表和元組
序列可修改,而元組不能。eda edward 42 序列可包含其它列表 edward edward 43 john john 44 database edward,john database edward 43 john 44 序列的分片 nubs range 10 nubs 0,1,2,3,4,5...