python常用数据类型操作-时间日历

简介: python常用数据类型操作-时间日历http://www.bieryun.com/3294.html time模块 1、  获取当前时间戳。 从0时区的1970年1月1日0时0分0秒, 到所给定日期时间的秒数,为浮点数。

python常用数据类型操作-时间日历http://www.bieryun.com/3294.html

time模块

1、  获取当前时间戳。

从0时区的1970年1月1日0时0分0秒, 到所给定日期时间的秒数,为浮点数。

import time
print(time.time())

1523587843.3224387

2、  获取时间元祖。

很多python时间函数将时间处理为9个数字的元组,如下图

time.localtime([seconds]),默认当前时间戳。

>>> import time

>>> time.localtime()

time.struct_time(tm_year=2018, tm_mon=4, tm_mday=13,tm_hour=10, tm_min=59, tm_sec=54, tm_wday=4, tm_yday=103, tm_isdst=0)

3、  获取格式化时间。

3.1秒 -> 可读

import time

time.ctime([seconds]),可选的时间戳,默认当前时间戳

>>>import time

>>>time.ctime()

'FriApr 13 10:57:06 2018'

3.2时间元组 -> 可读时间

import time

time.asctime([p_tuple]),可选的时间元组,默认当前时间元组

>>> importtime

>>>time.asctime()

'Fri Apr 13 11:01:592018'

4、  格式化日期字符串<--> 时间戳

4.1时间元组 -> 格式化日期

time.strftime(格式字符串, 时间元组)

>>>time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())

'2018-04-1311:05:47'

4.2格式化日期 -> 时间元组

time.strptime(日期字符串, 格式符字符串)

time.mktime(时间元组)

>>>time.mktime(time.strptime("2017-09-02 17:21:00", "%Y-%m-%d%H:%M:%S"))

1504344060.0

>>>time.strptime("2017-09-02 17:21:00", "%Y-%m-%d %H:%M:%S")

time.struct_time(tm_year=2017,tm_mon=9, tm_mday=2, tm_hour=17, tm_min=21, tm_sec=0, tm_wday=5, tm_yday=245,tm_isdst=-1)

5、  获取当前cpu时间

time.clock( ),为浮点数,可用来统计一段程序代码的执行耗时

6、  休眠n秒

推迟线程的执行, 可简单理解为, 让程序暂停

time.sleep(secs)

 

calendar模块

获取某月日历

import calendar
print(calendar.month(2018,4))

datetime模块

这个模块里面有datetime类,此外常用的还有date类,以及time类

1、             获取当天日期

>>> import datetime

>>>datetime.datetime.now()

datetime.datetime(2018, 4,13, 11, 18, 33, 996080)

>>>datetime.datetime.today()

datetime.datetime(2018, 4,13, 11, 18, 51, 252080)

2、             单独获取当前的年月日时分秒

year,month,day,hour,minute,second

>>> import datetime

>>>datetime.datetime.now().year

2018

3、             计算n天以后的时间

>>> import datetime

>>>datetime.datetime.now()+datetime.timedelta(days = 7)

datetime.datetime(2018, 4,20, 11, 28, 53, 688080)

4、             获取两个时间差

5、              import datetime

first = datetime.datetime(2018,4,15,00,00,00)
second = datetime.datetime(2018,4,18,00,00,00)

result = second -first

print(result.total_seconds())

 

相关文章
|
5月前
|
测试技术 索引 Python
Python接口自动化测试框架(练习篇)-- 数据类型及控制流程(一)
本文提供了Python接口自动化测试中的编程练习,包括计算器、猜数字、猜拳和九九乘法表等经典问题,涵盖了数据类型、运算、循环、条件控制等基础知识的综合应用。
56 1
|
1月前
|
Python
Python 中一些常见的数据类型
Python 中一些常见的数据类型
120 8
|
2月前
|
Python
Python中不同数据类型之间如何进行转换?
Python中不同数据类型之间如何进行转换?
32 6
|
2月前
|
存储 开发者 Python
Python 的数据类型
Python 的数据类型
46 6
|
3月前
|
Python
【10月更文挑战第7天】「Mac上学Python 13」基础篇7 - 数据类型转换与NoneType详解
本篇将详细介绍Python中的常见数据类型转换方法以及 `NoneType` 的概念。包括如何在整数、浮点数、字符串等不同数据类型之间进行转换,并展示如何使用 `None` 进行初始赋值和处理特殊情况。通过本篇的学习,用户将深入理解如何处理不同类型的数据,并能够在代码中灵活使用 `None` 处理未赋值状态。
73 2
【10月更文挑战第7天】「Mac上学Python 13」基础篇7 - 数据类型转换与NoneType详解
|
2月前
|
机器学习/深度学习 存储 数据挖掘
Python 编程入门:理解变量、数据类型和基本运算
【10月更文挑战第43天】在编程的海洋中,Python是一艘易于驾驭的小船。本文将带你启航,探索Python编程的基础:变量的声明与使用、丰富的数据类型以及如何通过基本运算符来操作它们。我们将从浅显易懂的例子出发,逐步深入到代码示例,确保即使是零基础的读者也能跟上步伐。准备好了吗?让我们开始吧!
41 0
|
3月前
|
编译器 数据安全/隐私保护 Python
Python--基本数据类型
【10月更文挑战第4天】
|
3月前
|
存储 Python
python数据类型、debug工具(一)
python数据类型、debug工具(一)
|
3月前
|
Python
[oeasy]python036_数据类型有什么用_type_类型_int_str_查看帮助
本文回顾了Python中`ord()`和`chr()`函数的使用方法,强调了这两个函数互为逆运算:`ord()`通过字符找到对应的序号,`chr()`则通过序号找到对应的字符。文章详细解释了函数参数类型的重要性,即`ord()`需要字符串类型参数,而`chr()`需要整数类型参数。若参数类型错误,则会引发`TypeError`。此外,还介绍了如何使用`type()`函数查询参数类型,并通过示例展示了如何正确使用`ord()`和`chr()`进行转换。最后,强调了在函数调用时正确传递参数类型的重要性。
33 3
|
4月前
|
存储 Java C++
30天拿下Python之数据类型
30天拿下Python之数据类型
46 4
下一篇
开通oss服务