python时间
Posted 晴天彩虹
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python时间相关的知识,希望对你有一定的参考价值。
#!/usr/bin/python # -*- coding: utf-8 -*- import sys import time import datetime line="Wed 11/22/2017 11:18 PM" timeValue=time.strptime("Wed 11/22/2017 11:18 PM","%a %m/%d/%Y %H:%M %p") day = time.strftime(‘%Y-%m-%d‘,timeValue) year = time.strftime(‘%Y‘,timeValue) UTC_FORMAT = "%Y-%m-%dT%H:%M:%S.%fZ" utcValue=time.strftime("%Y-%m-%dT%H:%M:%S.%fZ", timeValue) print(utcValue)
s="" print("true" if (s.strip()==‘‘) else "false")
m=datetime.datetime.utcfromtimestamp(time.mktime(time.strptime("Wed 11/22/2017 11:18 PM","%a %m/%d/%Y %H:%M %p"))) print(m)
以上是关于python时间的主要内容,如果未能解决你的问题,请参考以下文章