हम iat . का उपयोग करेंगे अंतिम तत्व तक पहुँचने के लिए विशेषता, क्योंकि इसका उपयोग पूर्णांक स्थिति द्वारा पंक्ति/स्तंभ जोड़ी के लिए एकल मान तक पहुँचने के लिए किया जाता है।
आइए पहले आवश्यक पंडों पुस्तकालय को आयात करें -
import pandas as pd
संख्याओं के साथ एक पांडा श्रृंखला बनाएं -
data = pd.Series([10, 20, 5, 65, 75, 85, 30, 100])
अब, iat() −
. का उपयोग करके अंतिम तत्व प्राप्त करेंdata.iat[-1]
उदाहरण
निम्नलिखित कोड है -
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]
आउटपुट
यह निम्नलिखित आउटपुट देगा -
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