本文主要是介绍Pythion获取当前月和上一个月的月份,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
# -*- coding:utf-8 -*-
__author__ = 'yanxin_ryan'
import timeclass Test(object):def run(self):now_month = time.localtime()[1] or 12print('当前月份: ', now_month)last_month = time.localtime()[1]-1 or 12print('上一个月份: ', last_month)if __name__ == '__main__':test = Test()test.run()
这篇关于Pythion获取当前月和上一个月的月份的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!