python中獲取如何Series值
在python中除了本文就有的列表,pandas庫中的Series也可以看作列表, 表示一系列的值(數字或者其他資料),例如一列數字,想要對這些數字進行操作,首先要獲取值。本文介紹python中獲取Series值的三種方法:1、使用切片獲取Series值;2、使用索引獲取Series值;3、直接遍歷Series獲取值。
方法一:使用切片獲取Series值
x = pd.Series(np.arange(1,11),index=list("abcdefghij")) display(x) display(x[::-1]) display(x[-4:-8:-1]) display(x[4:8:1])
方法二:使用索引獲取Series值
# 根據值獲取索引 series1[series1.values == 1].index # 根據索引獲取值 series1['a']
方法三:直接遍歷Series獲取值
from pandas import Series series = Series(data=name,index=emp) print(series) for value in series.keys():# 遍歷並拿到index資料 print(value) for value in series:#拿到name的值 print(value) for value in series.items():# 遍歷並拿到每對索引和資料 print(value)
以上就是python中獲取Series值的三種方法,大家可以直接套入使用哦~更多python學習推薦:。
(推薦作業系統:windows7系統、Python 3.9.1,DELL G3電腦。)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/810/viewspace-2830901/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python教程:如何獲取顏色的RGB值Python
- Python中獲取執行緒返回值的常用方法!Python執行緒
- python request 獲取cookies value值的方法PythonCookie
- 如何獲取變數token的值變數
- 如何獲取變數 token 的值變數
- selenium+python 如何請求介面和獲取介面返回值Python
- python如何只獲取日期Python
- android開發中如何動態獲取listview中的item的值AndroidView
- python3中編碼如何獲取網頁?Python網頁
- Python如何從列表中獲取笛卡爾積Python
- Python如何獲取request response bodyPython
- python如何獲取本機ipPython
- gitlab cicd中獲取tag值的方式Gitlab
- 確保從列表中獲取可用值
- JavaScript 獲取選中checkbox核取方塊的值JavaScript
- python如何幫我在投資中獲取更高收益Python
- python小技巧:獲取列表最大值以及位置Python
- 如何通過WinDbg獲取方法引數值
- python tkinter如何獲取label內容?Python
- python爬蟲如何獲取表情包Python爬蟲
- python 如何獲取當前時間Python
- 如何使用Python獲取、寫入localStoragePython
- python 呼叫 shell ,獲取返回值和返回資訊Python
- 獲取cookie裡面的值Cookie
- JavaScript獲取css的值JavaScriptCSS
- JavaScript獲取選中radio單選按鈕值JavaScript
- 使用layui框架的select獲取選中的值UI框架
- 如何用python分析xml獲取資料?PythonXML
- python 中如何判斷獲取檢視變數的型別Python變數型別
- 【Azure Developer】使用 CURL 獲取 Key Vault 中 Secrets 中的值Developer
- Python中怎麼讀取列表中某個值?Python
- 如何獲取 jenkins 中的憑證Jenkins
- Rust中如何獲取最大字串?Rust字串
- 在js中獲取 input checkbox裡選中的多個值JS
- JavaScript 獲取 checked 屬性值JavaScript
- 獲取md5加密值加密
- python如何獲取最優輪廓係數Python
- 介面測試中獲取的 token 值如何透過 des3 加密輸出S3加密