1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > python获取当前日期_Python程序获取当前日期

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

时间:2020-07-17 09:49:41

相关推荐

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

python获取当前日期

In the below example – we are implementing apython 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 modulefrom datetime import date# getting the current datecurrent_date = date.today()# printing the dateprint("Current date is: ", current_date)

Output

输出量

Current date is: -03-09

翻译自: /python/program-to-get-current-date.aspx

python获取当前日期

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。