Chúng tôi sẽ sử dụng iat để truy cập phần tử cuối cùng, vì nó được sử dụng để truy cập một giá trị duy nhất cho một cặp hàng / cột theo vị trí số nguyên.
Trước tiên, hãy để chúng tôi nhập thư viện Pandas được yêu cầu -
import pandas as pd
Tạo một chuỗi Gấu trúc với các con số -
data = pd.Series([10, 20, 5, 65, 75, 85, 30, 100])
Bây giờ, lấy phần tử cuối cùng bằng cách sử dụng iat () -
data.iat[-1]
Ví dụ
Sau đây là mã -
import pandas as pd # pandas series data = pd.Series([10, 20, 5, 65, 75, 85, 30, 100]) print"Series...\n",data # get the first element print"The first element in the series = ", data.iat[0] # get the last element print"The last element in the series = ", data.iat[-1]
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Series... 0 10 1 20 2 5 3 65 4 75 5 85 6 30 7 100 dtype: int64 The first element in the series = 10 The last element in the series = 100