python时间模块datetime模块

1.时间表示的几种类型
1). 时间戳
2). 字符串的时间
3). 元组类型的时间

import time

#1.时间戳
print(time.time())

#2.字符串时间
print(time.ctime())

#3.元组时间
print(time.localtime())
info = time.localtime()
print(info.tm_year)
print(info.tm_mon)



2.常用的时间转换

import time
import os
#把元组的时间转换为时间戳
tuple_time = time.localtime()
print(tuple_time)
print(time.mktime(tuple_time))

#把元组时间转换成字符串时间
print(time.strftime(‘%m-%d‘,tuple_time))
print(time.strftime(‘%Y-%m-%d‘,tuple_time))
print(time.strftime(‘%T‘,tuple_time))
print(time.strftime(‘%F‘,tuple_time))

#将时间戳类型转换成为字符串时间
pwd_time = os.path.getctime(‘/etc/passwd‘)
print(‘pwd_time‘,pwd_time)
print(time.ctime(pwd_time))

#将时间戳转换为元组
print(time.localtime(pwd_time))

#将元组类型转换为时间戳
tuple_time = time.localtime()
print(time.mktime(tuple_time))

3.datetime模块

import os
from datetime import date
from datetime import datetime
from datetime import timedelta

date.today() # 返回当前的日期,2019-06-08
datetime.now() # 返回当前的日期+时间,2019-06-08 12:11:00.127438
timedelta(days=5) # 生成一个时间段对象,使用该对象可以得到该段时间之前之后的时间。

#如何计算三天前的时间和三天后的时间
d = date.today()
delta = timedelta(days=31)
print(d + delta)
print(d - delta)

#如何计算两个小时前的时间和两个小时后的时间
now_hour = datetime.now()
delta = timedelta(hours=2)
print(now_hour - delta)
print(now_hour + delta)

#返回两个时间,想计算两个时间之间的时间差
now_time = datetime.now()
print(now_time)
pwd_time = os.path.getmtime(‘/etc/passwd‘)
print(pwd_time)
pwd_time_obj = datetime.fromtimestamp(pwd_time)
print(pwd_time_obj)
delta = now_time - pwd_time_obj
print(delta)

系统监控

需求:

  1. 获取当前主机信息, 包含操作系统名, 主机名, 内核版本, 硬件架构等
  2. 获取开机时间和开机时长;
  3. 获取当前登陆用户

import os
import psutil
from datetime import datetime

print(‘主机信息‘.center(50,‘*‘))
info = os.uname()
print(
"""
操作系统:%s
主机名称:%s
内核版本:%s
硬件架构:%s
"""%(info.sysname,info.nodename,info.release
,info.machine)
)

print(‘开机信息‘.center(50,‘*‘))
boot_time = psutil.boot_time() #返回一个时间戳
#将时间戳转化为datetime类型的时间
boot_time_obj = datetime.fromtimestamp(boot_time)
#print(type(boot_time_obj))
now_time = datetime.now()
#print(now_time)
delta_time = datetime.now()
delta_time = now_time - boot_time_obj
#print(delta_time)
#print(type(delta_time))

print(‘开机时间:‘,boot_time_obj)
#str是为了将时间对象转换为字符串,实现分离
print(‘当前时间:‘,str(now_time).split(‘.‘)[0])
print(‘开机时长:‘,str(delta_time).split(‘.‘)[0])

print(‘当前登陆用户‘.center(50,‘*‘))
login_user = psutil.users()
print(login_user)
#info = psutil.users()[0]
#print(info.name)

原文地址:https://blog.51cto.com/12893781/2406990

时间: 2024-11-06 11:27:31

python时间模块datetime模块的相关文章

Python之时间:datetime模块

datetime在time基础之上封装了一些方法.但是time是经常使用的,datetime中的功能,time都能实现 一.datetime的三个模块 datetime.date datetime.time datetime.datetime 主要使用这个模块 import datetime 1.datetime.datetime.now() 获取当前时间,datetime格式 t1=datetime.datetime.now() print t1 print t1.year print t1.

python中的datetime模块

Python提供了多个内置模块用于操作日期时间,像calendar,time,datetime.time模块我在之前的文章已经有所介绍,它提供的接口与C标准库time.h基本一致.相比于time模块,datetime模块的接口则更直观.更容易调用.今天就来讲讲datetime模块. datetime模块定义了两个常量:datetime.MINYEAR和datetime.MAXYEAR,分别表示datetime所能表示的最小.最大年份.其中,MINYEAR = 1,MAXYEAR = 9999.(

Python模块-datetime模块

datetime.datetime.now() 返回当前的datetime日期类型 >>> d=datetime.datetime.now() >>> d datetime.datetime(2018, 2, 17, 17, 41, 49, 372222) >>> d.year 2018 >>> d.month 2 >>> d.timetuple() time.struct_time(tm_year=2018, tm

常用模块 - datetime模块

一.简介 datetime是Python处理日期和时间的标准库. 1.datetime模块中常用的类: 类名 功能说明 date 日期对象,常用的属性有year, month, day time 时间对象 datetime 日期时间对象,常用的属性有hour, minute, second 2.datetime模块中包含的常量 常量 功能说明 用法 返回值 MAXYEAR 返回能表示的最大年份 datetime.MAXYEAR 9999 MINYEAR 返回能表示的最小年份 datetime.M

python1.3-----time模块/datetime模块/calendar模块

time模块: UTC(世界标准时间):格林尼治天文时间.中国时间和UTC的关系:中国时间=UTC+8DST(夏令时):是一种节约能源而认为规定时间指定,在夏季调快1个小时. 时间的表示形式:1.时间戳:以整形或浮点型表示时间的一个以秒为单位的时间间隔.这个时间间隔的基础值是从1970年1月1日0点0分开始算起.2.元组一种python的数据结构,这个元组有9个整型内容:year :~month:~day :~hours:~minutes:~seconds:~weekday:星期几(0-6)Ju

python的time&datetime模块

python版本:2.7官方文档地址:time:https://docs.python.org/2.7/library/time.htmldatetime:https://docs.python.org/2/library/datetime.html time模块 1.获取当前时间 时间戳:time.time() 输出:1708066786.208922 # 将时间戳转换为时间数组 localtime = time.localtime(time.time()) 输出:time.struct_ti

python time 和 datetime模块

time模块 时间相关的操作,时间有三种表示方式: 时间戳               1970年1月1日之后的秒,即:time.time() 格式化的字符串    2014-11-11 11:11,    即:time.strftime('%Y-%m-%d') 结构化时间          元组包含了:年.日.星期等... time.struct_time    即:time.localtime() # 1.时间戳 print(time.time()) # 显示当前时间的时间戳 print(t

Python time和datetime模块

time模块 time() -- return current time in seconds since the Epoch as a floatclock() -- return CPU time since process start as a floatsleep() -- delay for a number of seconds given as a floatgmtime() -- convert seconds since Epoch to UTC tuplelocaltime(

time模块 | datetime模块 | Python

import time print(time.time()) # 1970年到现在的时间,以秒的形式 # time.sleep(1) # 延迟,cpu不工作 print(time.clock()) # 计算CPU执行时间 print(time.gmtime()) # 结构化时间,英国世界标准时间 print(time.localtime()) # 本地时间 # print(help(time.strftime)) struct_time = time.localtime() print(time