1. 程式人生 > >Python第二天-元組的基本使用方法

Python第二天-元組的基本使用方法

不能 error deletion count () str 位置 back del

由於精力充沛,再來一篇博客壓壓驚!

  元組(tuple)的用法和list基本一樣,但是,元組不能刪除修改,這是元組最關鍵的特性

1.定義元組

arr=("123","456","789")

2.獲取第一個元素

arr=("123","456","789")
print(arr[0]);

結果:123

3.遍歷(叠代)

arr=("123","456","789")
for a in arr:
    print(a);

結果:123
   456
   789

4.count()方法--統計指定元素在元組中出現的次數

arr=("123","456","123")
count=arr.count("
123") print(count);

結果:2

5.index():統計字符串在元組中第一次出現的位置

arr=("123","456","123")
count=arr.index("123")
print(count);

結果:0

6.測試刪除元組中的數據:

arr=("123","456","123")
del arr[0:1]
print(arr);

結果:TypeError: ‘tuple‘ object does not support item deletion

---------------------------------結束----------------------------------------

還有精力?再來!!!

Python第二天-元組的基本使用方法