python将excel内两列的日期合并

原excel:

 目标将year和month合并:

year、month里放的1961等是数字,合并日期的时候需要把它们变成字符串再合并,采用.astype(str)

#!usr/bin/env python
# -*- coding:utf-8 -*-
"""
@author: Su
@file: ceshi.py
@time: 2023/06/26
@desc:
"""
import pandas as pd

# 打开excel文件
df = pd.read_excel('processdata/lianxi/鄂尔多斯.xlsx')
# 合并日期
df['date'] = df['year'].astype(str) + '-' + df['month'].astype(str)
print(df['date'])

所得结果:

 

posted @ 2023-07-19 09:13  秋刀鱼CCC  Views(320)  Comments(0Edit  收藏  举报