python怎么获取当前时间年月日
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python怎么获取当前时间年月日相关的知识,希望对你有一定的参考价值。
参考技术A 取得时间相关的信息的话,要用到pythontime模块,python
time模块里面有很多非常好用的功能,你可以去官方
文档了解下,要取的当前时间的话,要取得当前时间的时间戳,时间戳好像是1970年到现在时间相隔的时间。
你可以试下下面的方式来取得当前时间的时间戳:
import
time
time.time()
Calendar获取当前年月日问题
Calendar can=Calendar.getInstance(); //Date sdf = new SimpleDateFormat("yyyy-MM-dd").parse(text); //can.setTime(sdf); int year=can.YEAR; int month=can.MONTH+1; int day=can.DAY_OF_MONTH;取出的year值怎么是1啊,怎么才能获取正确的年份??
参考技术A Calendar.YEAR是常量1int year = can.get(Calendar.Year)
以上是关于python怎么获取当前时间年月日的主要内容,如果未能解决你的问题,请参考以下文章