關於python的基礎知識4 函式

2021-08-07 09:31:00 字數 523 閱讀 5694

enumerate()函式

python中的enumerate()函式,用於將乙個可遍歷的資料物件(如字串、列表、元組)對映為乙個索引序列。該索引序列包含資料和資料下標。

enumerate()函式的語法為:

enumerate(sequence, [start = 0])

·sequence 可以是乙個序列、迭代器或其它支援迭代的物件;

·start  是下標起始位置,預設為 0 。

舉例1:

for index, fruit in enumerate(fruits):

print index, fruit

舉例2:

numbers = [12, 34, 6, 78, 90, 23, 56]

for i, num in enumerate(numbers):

print i, num 

說明:以上兩例中的**在pycharm中執行正確。

python關於Pandas的基礎知識

pandas中資料檔案的讀取 read csv 和read table read csv 讀取以 分割的檔案到dataframe read table 讀取以 t 分割的檔案到dataframe,其中sep引數設定可以讀取任意分隔符分割的檔案,所以我們常用read table 函式讀取資料 以下兩條...

Python基礎知識(day4)

for迴圈 for迴圈 name lilangkui for item in name print item print item 列印1 10 for i in range 1,11 print i 列印除7以外的1 10數字 for i in range 1,11 if i 7 pass els...

python 關於類的幾點基礎知識

看例子看例子 class noobject pass class fromobject object pass no object noobject from object fromobject type no object type from object python3的類都已經隱式繼承了obj...