码迷,mamicode.com
首页 > 编程语言 > 详细

python datetime unix时间戳以及字符串时间戳转换

时间:2019-01-11 18:09:40      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:日期时间   env   字符   当前日期   timestamp   log   nbsp   pre   odi   

 

 将python的datetime转换为unix时间戳

import time
import datetime

dtime = datetime.datetime.now()
ans_time = time.mktime(dtime.timetuple())

 

 将unix时间戳转换为python的datetime

 

import datetime

unix_ts = 1439111214.0
time = datetime.datetime.fromtimestamp(unix_ts)

 

 

#!/usr/bin/env python
# -*- coding:utf-8 -*-

# @Datetime : 2017/11/23 下午12:37
# @Author   : Alfred Xue
# @E-Mail   : Alfred.Hsueh@gmail.com
# @GitHub   : https://github.com/Alfred-Xue
# @Blog     : http://www.cnblogs.com/alfred0311/

import datetime
import time


# 日期时间字符串
st = "2017-11-23 16:10:10"
# 当前日期时间
dt = datetime.datetime.now()
# 当前时间戳
sp = time.time()

# 1.把datetime转成字符串
def datetime_toString(dt):
    print("1.把datetime转成字符串: ", dt.strftime("%Y-%m-%d %H:%M:%S"))


# 2.把字符串转成datetime
def string_toDatetime(st):
    print("2.把字符串转成datetime: ", datetime.datetime.strptime(st, "%Y-%m-%d %H:%M:%S"))


# 3.把字符串转成时间戳形式
def string_toTimestamp(st):
    print("3.把字符串转成时间戳形式:", time.mktime(time.strptime(st, "%Y-%m-%d %H:%M:%S")))


# 4.把时间戳转成字符串形式
def timestamp_toString(sp):
    print("4.把时间戳转成字符串形式: ", time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(sp)))


# 5.把datetime类型转外时间戳形式
def datetime_toTimestamp(dt):
    print("5.把datetime类型转外时间戳形式:", time.mktime(dt.timetuple()))


# 1.把datetime转成字符串
datetime_toString(dt)
# 2.把字符串转成datetime
string_toDatetime(st)
# 3.把字符串转成时间戳形式
string_toTimestamp(st)
# 4.把时间戳转成字符串形式
timestamp_toString(sp)
# 5.把datetime类型转外时间戳形式
datetime_toTimestamp(dt)

 

输出结果:

1.把datetime转成字符串:  2017-11-23 17:05:18
2.把字符串转成datetime:  2017-11-23 16:10:10
3.把字符串转成时间戳形式: 1511424610.0
4.把时间戳转成字符串形式:  2017-11-23 17:05:18
5.把datetime类型转外时间戳形式: 1511427918.0

 

python datetime unix时间戳以及字符串时间戳转换

标签:日期时间   env   字符   当前日期   timestamp   log   nbsp   pre   odi   

原文地址:https://www.cnblogs.com/williamjie/p/10256323.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!