python如何转换时间戳到"2017年6月12日 18点24分"这样的格式呢?
问题描述
python如何转换时间戳到'2017年6月12日 18点24分'这样的格式呢?谢谢
import timetimestamp = time.time()time.strftime(’%Y年%m月%d日 %H时%M分’, time.localtime(timestamp))Traceback (most recent call last): File '<input>', line 1, in <module>UnicodeEncodeError: ’locale’ codec can’t encode character ’u5e74’ in position 2: Illegal byte sequence
另外吐槽下,chrome下打开segmentfault显示内存用完崩溃的错误到底什么时候修啊啊啊啊啊啊!
问题解答
回答1:# coding: utf8import timetimestamp = time.time() - 3600 # 时间戳print(time.strftime(’%Y{y}%m{m}%d{d} %H{H}%M{M}’, time.localtime(timestamp)).format(y=’年’, m=’月’, d=’日’, H=’时’, M=’分’))回答2:
还真被我研究出来种万能方法,据我百度Google貌似这还是世上独一份?
话不多说,下面上解决原理及方案:
官方文档:https://docs.python.org/3/lib...
class time.`struct_time`¶
The type of the time value sequence returned by gmtime(), localtime(), and strptime(). It is an object with a named tuple interface: values can be accessed by index and by attribute name. The following values are present:
IndexAttributeValues0tm_year(for example, 1993)1tm_monrange [1, 12]2tm_mdayrange [1, 31]3tm_hourrange [0, 23]4tm_minrange [0, 59]5tm_secrange [0, 61]; see (2) in strftime() description6tm_wdayrange [0, 6], Monday is 07tm_ydayrange [1, 366]8tm_isdst0, 1 or -1; see belowN/Atm_zoneabbreviation of timezone nameN/Atm_gmtoffoffset east of UTC in secondsNote that unlike the C structure, the month value is a range of [1, 12], not [0, 11].In calls to mktime(), tm_isdst may be set to 1 when daylight savings time is in effect, and 0 when it is not. A value of -1 indicates that this is not known, and will usually result in the correct state being filled in.When a tuple with an incorrect length is passed to a function expecting a struct_time, or having elements of the wrong type, a TypeError is raised.
看文档可以得知time.localtime()返回的元组结构,我要用到的是年月日时分,前5个,于是乎,代码:
import timeprint(’%s年%s月%s日 %s时%s分’ % time.localtime(1497254119.69407)[:5])
输出:
2017年6月12日 15时55分
搞定。
转载请注明出处,谢谢。
相关文章:
1. javascript - jQuery中live事件在移动微信端下没有效果;代码如下2. javascript - 请问一下react-native 布局的时候,尺寸的大小是如何确定的呢?3. javascript - 实参和形参有哪些通俗的命名吗?尤其形参4. javascript - js 修改表格元素的,可以用DOM操作实现吗?5. html5 - 目前 公司App 嵌入H5页面 做个 手机支付功能 没有做过 所以 请求各位有经验的 给个思路6. mysql5.7 json查询支持7. Python如何考虑代码注入安全?8. 找一个权威、实战的微信扫码授权登录网站的开发教程或者文章9. python - 关于matplotlib的x轴显示的问题10. html5 - vue-cli 装好了 新建项目的好了,找不到项目是怎么回事?