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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 如何獲取cookie值Cookie
- js如何獲取陣列中的最大值JS陣列
- 【Python】如何獲取知乎最有價值的內容Python
- Python教程:如何獲取顏色的RGB值Python
- javascript如何獲取屬性值JavaScript
- 如何獲取變數token的值變數
- 如何獲取變數 token 的值變數
- 如何獲取繫結變數值變數
- Python中獲取執行緒返回值的常用方法!Python執行緒
- Python如何從列表中獲取笛卡爾積Python
- jQuery如何獲取指定元素的索引值jQuery索引
- javascript如何獲取url傳遞的值JavaScript
- android開發中如何動態獲取listview中的item的值AndroidView
- 原生js如何獲取選中的select下拉項的值JS
- C#如何獲取ListView控制元件選中項的值C#View控制元件
- python request 獲取cookies value值的方法PythonCookie
- python如何只獲取日期Python
- python3中編碼如何獲取網頁?Python網頁
- python如何幫我在投資中獲取更高收益Python
- JavaScript獲取選中checkbox核取方塊值JavaScript
- js 獲取被選中核取方塊的值JS
- selenium+python 如何請求介面和獲取介面返回值Python
- js如何獲取指定陣列元素在陣列中的索引值JS陣列索引
- js如何獲取選中radio單選按鈕的值JS
- js如何獲取樣式表中定義的css屬性值JSCSS
- jQuery如何獲取選中單選按鈕radio的值jQuery
- listview 後天獲取選中項的值View
- 獲取UITableViewCell中UITextField的值方法總結UIView
- gitlab cicd中獲取tag值的方式Gitlab
- JavaScript 獲取選中checkbox核取方塊的值JavaScript
- jquery獲取選中checkbox核取方塊的值jQuery
- js獲取選中checkbox核取方塊的值JS
- javascript獲取選中checkbox核取方塊的值JavaScript
- python如何獲取本機ipPython
- javascript如何獲取當前選中的option項的文字和value值JavaScript
- jquery如何獲取select下拉選單選中項的值和文字jQuery
- python 呼叫 shell ,獲取返回值和返回資訊Python
- python小技巧:獲取列表最大值以及位置Python