python输出年份和月份_python-将日期转换为月份和年份

从以下日期如何使用python获取月份和年份

日期是

"2011-07-01 09:26:11" //This showud display as "This month"

"2011-06-07 09:26:11" //This should display as June

"2011-03-12 09:26:11" //This should display as March

"2010-07-25 09:26:11" // Should display as last year

请让我知道如何使用python 2.4获取这些格式

当我在pandas数据框中有一个日期变量[具有相同格式]时,该如何执行呢?

解决方法:

import time

import calendar

current = time.localtime()

dates = ["2011-07-01 09:26:11", "2011-06-07 09:26:11", "2011-03-12 09:26:11", "2010-07-25 09:26:11"]

for date in dates:

print "%s" % date

date = time.strptime(date, "%Y-%m-%d %H:%M:%S")

if date.tm_year == current.tm_year - 1:

print "Last year"

elif date.tm_mon == current.tm_mon:

print "This month"

else:

print calendar.month_name[date.tm_mon]

应该大致按照您的要求进行.

标签:python

来源: https://codeday.me/bug/20191102/1991563.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值