import pandas as pd
# 读取 Excel 文件,并将 art_type 列和 url 列读取为字符串类型
df = pd.read_csv(r'C:\Users\win10\Desktop\新建文件夹\us_thinktank_art_updated.csv', dtype={'art_type': 'str', 'art_url': 'str'})
# 将 art_type 列中的字符全部转换为小写字母
df['art_type'] = df['art_type'].str.lower()
# 筛选符合条件的行
new_df = df[df['art_type'].isin(['blog', 'report', 'commentary', 'research', 'article', 'publication'])]
# 去掉超链接列
new_df = new_df.drop('art_url', axis=1)
# 将新数据框存储到 Excel 文件中
new_df.to_excel(r'C:\Users\win10\Desktop\output.xlsx', index=False)
python处理excel去掉超链接
最新推荐文章于 2023-12-29 09:37:37 发布