📜  Python|熊猫 Index.contains()

📅  最后修改于: 2022-05-13 01:55:47.114000             🧑  作者: Mango

Python|熊猫 Index.contains()

Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。

Pandas Index.contains()函数返回一个布尔值,指示提供的键是否在索引中。如果输入值存在于索引中,则返回True ,否则返回False ,表示输入值不存在于索引中。

示例 #1:使用Index.contains()函数检查给定日期是否存在于索引中。

# importing pandas as pd
import pandas as pd
  
# Creating the Index
idx = pd.Index(['2015-10-31', '2015-12-02', '2016-01-03',
                            '2016-02-08', '2017-05-05'])
  
# Print the Index
idx

输出 :

让我们检查一下索引中是否存在“2016-02-08”。

# Check if input date in present or not.
idx.contains('2016-02-08')

输出 :

正如我们在输出中看到的那样,该函数返回了 True,表明该值存在于索引中。示例 #2:使用Index.contains()函数检查输入月份是否存在于索引中。

# importing pandas as pd
import pandas as pd
  
# Creating the Index
idx = pd.Index(['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
               'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'])
  
# Print the Index
idx

输出 :

让我们检查索引中是否存在“May”

# to check if the input month is
# part of the Index or not.
idx.contains('May')

输出 :