在 Pandas 中,可以使用 in
运算符来判断列是否存在于 DataFrame 中,下面是一个详细的示例:
判断列是否存在
要判断一个列是否存在于 DataFrame 中,可以使用 in
运算符结合 columns
属性来实现,下面是具体的步骤:
1、导入 Pandas 库:
import pandas as pd
2、创建一个 DataFrame:
data = {'Name': ['John', 'Emma', 'Mike'], 'Age': [25, 28, 30], 'City': ['New York', 'London', 'Paris']} df = pd.DataFrame(data)
3、使用 in
运算符和 columns
属性判断列是否存在:
column_name = 'Age' if column_name in df.columns: print(f"The column '{column_name}' exists in the DataFrame.") else: print(f"The column '{column_name}' does not exist in the DataFrame.")
运行以上代码,将输出以下结果:
The column 'Age' exists in the DataFrame.
如果将 column_name
的值改为不存在的列名,'Gender'
,则输出结果为:
The column 'Gender' does not exist in the DataFrame.
通过这种方式,你可以方便地判断列是否存在于 DataFrame 中。
原创文章,作者:未希,如若转载,请注明出处:https://www.kdun.com/ask/476349.html
本网站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本网站。如有问题,请联系客服处理。
发表回复