python中的时间函数的简单介绍

Python获取当前时间前、后一个月的函数这需求折腾python中的时间函数了python中的时间函数我半天..
import time
import datetime as datetime
def late_time(time2):
# 先获得时间数组格式的日期
#time2是外部传入的任意日期
now_time = datetime.datetime.strptime(time2, '%Y-%m-%d')
#如需求是当前时间则去掉函数参数改写为datetime.datetime.now()
threeDayAgo = (now_time - datetime.timedelta(days =30))
# 转换为时间戳
timeStamp =int(time.mktime(threeDayAgo.timetuple()))
# 转换为其python中的时间函数他字符串格式
otherStyleTime = threeDayAgo.strftime("%Y-%m-%d")
return otherStyleTime
a = late_time("2019-3-30")
print(a)# 打印2018-02-28
python语言中可以调用的函数有哪些?Python语言中有很多内置函数和标准库函数可以直接调用,同时还可以自定义函数和调用其python中的时间函数他模块中python中的时间函数的函数 。以下是一些常用的Python内置函数和标准库函数python中的时间函数:
数学函数python中的时间函数:abs(), pow(), round(), max(), min(), math库中的sin(), cos(), tan(), pi等函数 。
字符串函数:len(), str(), int(), float(), ord(), chr(), upper(), lower(), replace(), split()等函数 。
列表函数:append(), extend(), insert(), remove(), pop(), sort(), reverse()等函数 。
文件操作函数:open(), read(), write(), close()等函数 。
时间和日期函数:time(), sleep(), strftime()等函数 。
正则表达式函数:re.compile(), re.search(), re.match(), re.sub()等函数 。
网络编程函数:socket库中的socket(), bind(), listen(), accept()等函数 。
Python中处理时间的几种方法小结python中的时间模块主要有time, datetime 。
I, time模块
time模块中包含了四种时间格式:
float格式,即给定时间相对于epoch增加的秒数
tuple格式,一个九元组 (tm_year, tm_mon, tm_mday, tm_hour, tm_min, tm_sec, tm_wday, tm_yday, tm_isdst)
string格式,'Mon Feb6 15:00:06 2012'
format格式,以指定的格式生成的时间
针对这几种时间格式 , time模块提供了函数在格式之间相互转换 。
asctime(tuple) -string
ctime(float) -string
gmtime(float) -tuple
localtime(float) -tuple
mktime(tuple) -float
strftime(format, tuple) -format string
strptime(formatstring, format) -tuple
time() - float
上述函数中,除了time()函数直接返回当前时间相对于epoch的秒数外,其他函数都要求有时间的输入,如果没有输入 , 则默认使用当前时间 。
另外,strftime和strptime中的format使用下面的格式:
%a 英文星期简写
%A 英文星期的完全
%b 英文月份的简写
%B 英文月份的完全
%c 显示本地日期时间
%d 日期,取1-31
%H 小时,0-23
%I 小时,0-12
%m 月 ,  01 -12
%M 分钟,1-59
%j 年中当天的天数
%w 显示今天是星期几
%W 第几周
%x 当天日期
%X 本地的当天时间
%y 年份 00-99间
%Y 年份的完整拼写
%S 秒(00-59)
除了上述的时间转换函数之外,模块还提供了下面的函数:
clock() 返回进程的创建时间,以秒计数的float
sleep(float) sleep一段时间 , 以秒计数
tzset() 更改时区
II ,  datetime
datetime模块定义了下面这几个类:
datetime.date:表示日期的类 。常用的属性有year, month, day;datetime.time:表示时间的类 。常用的属性有hour, minute, second, microsecond;datetime.datetime:表示日期时间 。datetime.timedelta:表示时间间隔,即两个时间点之间的长度 。datetime.tzinfo:与时区有关的相关信息 。(这里不详细充分讨论该类,感兴趣的童鞋可以参考python手册)

推荐阅读