导语:
本文主要介绍了关于python怎么判断是星期几的相关知识,希望可以帮到处于编程学习途中的小伙伴
在 Python 的交互式解释器中先导入 time 模块,然后输入 [e for e in dir(time) if not e.startswith('_')] 命令,即可看到该模块所包含的
全部属性和函数:
>>> [e for e in dir(time) if not e.startswith('_')]
['altzone', 'asctime', 'clock', 'ctime', 'daylight', 'get_clock_info', 'gmtime', 'localtime', 'mktime', 'monotonic',
'perf_counter', 'process_time', 'sleep', 'strftime', 'strptime', 'struct_time', 'time', 'timezone', 'tzname']
python编程中主要用来操作日期和时间的python模块是datetime和time这两个模块。时间模块主要包含提供日期和时间功能的各种类和函数。
数字。该模块不仅提供了将日期和时间格式化成字符串的功能,还提供了从字符串中恢复日期和时间的功能。
python获取今日日期
import datetime
today = datetime.date.today()
print(today)
输出:
2019-12-31
推荐学习《
》。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何在python中打开一个程序09/18
- ♥ r在python中代表什么09/10
- ♥ python解释器的多种用途12/05
- ♥ 如何在python中编写for循环语句08/15
- ♥ 如何安装和配置 python tushare 库?09/26
- ♥ 什么是 python 混淆矩阵()11/18
内容反馈