`
mlzboy
  • 浏览: 726423 次
  • 性别: Icon_minigender_1
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论

python下datetime类型的转换

阅读更多
print datetime.strptime("2010-04-01 00:04:57.277","%Y-%m-%d %H:%M:%S.%f")
参考文章:
http://docs.python.org/library/datetime.html#strftime-strptime-behavior
Directive Meaning Notes
%a Locale’s abbreviated weekday name.  
%A Locale’s full weekday name.  
%b Locale’s abbreviated month name.  
%B Locale’s full month name.  
%c Locale’s appropriate date and time representation.  
%d Day of the month as a decimal number [01,31].  
%f Microsecond as a decimal number [0,999999], zero-padded on the left (1)
%H Hour (24-hour clock) as a decimal number [00,23].  
%I Hour (12-hour clock) as a decimal number [01,12].  
%j Day of the year as a decimal number [001,366].  
%m Month as a decimal number [01,12].  
%M Minute as a decimal number [00,59].  
%p Locale’s equivalent of either AM or PM. (2)
%S Second as a decimal number [00,61]. (3)
%U Week number of the year (Sunday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Sunday are considered to be in week 0. (4)
%w Weekday as a decimal number [0(Sunday),6].  
%W Week number of the year (Monday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Monday are considered to be in week 0. (4)
%x Locale’s appropriate date representation.  
%X Locale’s appropriate time representation.  
%y Year without century as a decimal number [00,99].  
%Y Year with century as a decimal number.  
%z UTC offset in the form +HHMM or -HHMM (empty string if the the object is naive). (5)
%Z Time zone name (empty string if the object is naive).  
%% A literal '%' character.  


分享到:
评论
1 楼 f002489 2011-03-25  
strftime

相关推荐

    python中时间转换datetime和pd.to_datetime详析

    `datetime` 更适合基础的日期时间操作,而`pd.to_datetime` 在数据处理场景下,尤其是与pandas数据框配合时,具有更广泛的应用。了解并熟练掌握这两个函数,将有助于提升你在Python中的数据分析能力。

    将python的datetime转换为unix时间戳code.txt

    将python的datetime转换为unix时间戳 13位时间戳获取方法 将unix时间戳转换为python的datetime

    python timestamp和datetime之间转换详解

    ### Python Timestamp 和 Datetime 之间转换详解 在日常的软件开发工作中,特别是在处理与时间相关的数据时,我们经常会遇到需要将不同的时间格式进行转换的情况。Python 提供了强大的时间处理库,使得时间戳...

    PyPI 官网下载 | python-datetime2-0.0.1.tar.gz

    《Python库:datetime2-0.0.1的探索与应用》 在Python编程中,时间日期处理是一项常见的任务,而Python的...对于需要高精度时间处理和复杂时区转换的Python开发者来说,深入研究`datetime2`库无疑是一次有价值的探索。

    python3实现往mysql中插入datetime类型的数据

    尽管"YYYY-MM-DD HH:MM:SS"通常是标准格式,但某些情况下可能需要使用MySQL的`STR_TO_DATE()`函数将字符串转换为datetime类型。不过,通常在Python这边做好格式化就可以避免这个问题。 总结来说,Python 3中向MySQL...

    python使用datetime模块进行时间、日期、时间戳的转换

    Python 使用 datetime 模块进行时间、日期、时间戳的转换 Python 中的时间、日期和时间戳之间的转换可以使用 datetime 模块来实现。下面是关 于 datetime 模块的使用方法和示例代码: 1. 字符类型的日期转换为...

    以 Python 的 datetime 模块为例

    Python 的 datetime 模块是处理日期和时间的重要工具,它为程序员提供了丰富的功能,包括日期的计算、时间的格式化以及与时间戳的转换等。在这个主题中,我们将深入探讨 datetime 模块的核心概念和常见用法。 1. **...

    python utc datetime转换为时间戳的方法

    在Python中,`time.mktime()`函数并不适用于将UTC `datetime`对象转换为时间戳,因为这个函数实际上是`localtime()`的逆操作,它会将一个时间元组转换为从1970年1月1日到现在的浮点秒数,但这个转换是基于本地时区的...

    python中datetime的用法.docx

    Python的datetime模块是编程中处理日期和时间的核心组件,提供了丰富的功能来满足各种日期和时间相关的操作需求。本文将深入探讨这个模块中的几个关键概念,包括datetime类、timedelta类,以及strftime和strptime这...

    05-python-datetime模块-SQL数据库-对象关系映射-函数进阶

    在Python编程中,掌握datetime模块、SQL数据库操作、对象关系映射(ORM)以及函数进阶技巧是非常重要的。这些知识点都是提升开发效率和代码质量的关键。 首先,让我们深入了解一下`datetime`模块。这个模块提供了...

    python datetime时间格式的相互转换问题

    总之,Python的`datetime`模块提供了丰富的功能,可以方便地进行日期和时间的处理,包括但不限于格式转换、日期加减、时间戳转换等。了解并熟练掌握这些操作对于编写涉及日期和时间的Python程序至关重要。在实际应用...

    Python基于datetime或time模块分别获取当前时间戳的方法实例

    在某些情况下,我们需要将日期时间转换为时间戳形式。在`datetime`模块中,可以直接通过`.timestamp()`方法获取时间戳: ```python timestamp = current_datetime.timestamp() print("当前时间戳:", timestamp) ```...

    python时间类型相互转换

    在利用python处理数据时,经常会出现限定格式数据无法读取问题。此代码文档明确说明时间格式数据的关系、转换。

    Python datetime 如何处理时区信息

    Python的datetime模块是进行日期和时间操作的核心库,但在处理涉及不同时区的时间时,我们需要更深入地了解如何处理时区信息。时区处理对于构建全球化应用尤其重要,因为不同的地理位置有不同的时间标准。 首先,...

    时间字符串转换成日期对象datetime的方法

    您可能感兴趣的文章:sql语句中如何将datetime格式的日期转换为yy-mm-dd格式将WMI中的DateTime类型转换成VBS时间的函数代码LINQ字符串向datetime 转换时失败的处理方法Sql中将datetime转换成字符串的

    Python Numpy库datetime类型的处理详解

    ### Python Numpy库中Datetime类型的处理详解 #### 引言 在进行数据分析的过程中,时间序列数据的处理是一项非常重要的任务。Python提供了多种处理日期和时间的方法,包括内置的`time`、`datetime`以及`calendar`...

Global site tag (gtag.js) - Google Analytics