欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程语言 > python >内容正文

python

python获取当前日期_Python程序获取当前日期

发布时间:2023/12/1 python 51 豆豆
生活随笔 收集整理的这篇文章主要介绍了 python获取当前日期_Python程序获取当前日期 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

python获取当前日期

In the below example – we are implementing a python program to get the current date.

在下面的示例中-我们正在实现一个python程序来获取当前日期 。

Steps:

脚步:

  • Import the date class from datetime module.

    从datetime模块导入日期类。

  • Call today() function which is a library function of date class.

    调用today()函数,该函数是日期类的库函数。

  • Finally, print the date.

    最后,打印日期。

# Python program to get current date # importing the date class # from datetime module from datetime import date# getting the current date current_date = date.today()# printing the date print("Current date is: ", current_date)

Output

输出量

Current date is: 2020-03-09

翻译自: https://www.includehelp.com/python/program-to-get-current-date.aspx

python获取当前日期

总结

以上是生活随笔为你收集整理的python获取当前日期_Python程序获取当前日期的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。