我想有更优雅的方法可以做到这一点,但这就是我现在想出的。from datetime import datedf.hire_date = df.hire_date.apply(date.fromordinal) # this will give you date in dash formatdf.hire_date = df.hire_date.apply(lambda x: str(x).replace('-', '/')) # this will simply replace dash with slash希望这对您有用:)