datetime中时间的formatter整理
print datetime.datetime.now().strftime("%Y.%m.%d")
Directive |
Meaning |
%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]. 现在日。 |
%H |
Hour (24-hour clock) as a decimal number [00,23]. 现在小时(24小时制)。 |
%I |
Hour (12-hour clock) as a decimal number [01,12]. 现在小时(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. 现在上/下午,用AM/PM表示。仅与%I一块使用。 |
%S |
Second as a decimal number [00,61]. 现在秒。 |
%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. 现在是一年中的第几个星期。从第一个星期日开始算第1个星期,之前算第0个。 |
%w |
Weekday as a decimal number [0(Sunday),6]. 现在的星期数,星期日算0。 |
%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. 现在是一年中的第几个星期。从第一个星期一开始算第1个星期,之前算第0个。 |
%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 |
Time zone name (no characters if no time zone exists). 时区名称(如果没有时区则空白)。 |
%% |
A literal '%' character. 百分号的转义符。 |
如果看不明白具体长什么样,可以用本文开头那条语句来测试。
就酱。
PS:博客园的表格好坑啊!and图没有什么用,但是如果不加的话,就给什么乱七八糟的东西打广告了。
datetime中时间的formatter整理的更多相关文章
- mysql中时间字段datetime怎么判断为空和不为空
mysql中时间字段datetime怎么判断为空和不为空一般为空都用null表示,所以一句sql语句就可以.select * from 表名 where 日期字段 is null;这里要注意null的 ...
- Python中时间的处理之——timedelta篇
#! /usr/bin/python # coding=utf-8 from datetime import datetime,timedelta """ timed ...
- python中时间格式
问题:通过MySQLdb查询datetime字段,然后通过浏览器显示出来,得到的格式是: 'Thu, 19 Feb 2009 16:00:07 GMT' (http呈现出来的格式) ...
- javascript中字符串常用操作整理
javascript中字符串常用操作整理 字符串的操作在js中非常频繁,也非常重要.以往看完书之后都能记得非常清楚,但稍微隔一段时间不用,便会忘得差不多,记性不好是硬伤啊...今天就对字符串的一些常用 ...
- python基础 ---time,datetime,collections)--时间模块&collections 模块
python中的time和datetime模块是时间方面的模块 time模块中时间表现的格式主要有三种: 1.timestamp:时间戳,时间戳表示的是从1970年1月1日00:00:00开始按秒计算 ...
- Asp.Net Core中Json序列化处理整理
一.Asp.Net Core中的Json序列化处理使用的是Newtonsoft.Json,更多参考:C# Newtonsoft.Json JsonSerializerSettings配置序列化操作,C ...
- .NetCore中EFCore的使用整理(二)-关联表查询
EF常用处理关联加载的方式有3中:延迟加载(Lazy Loading).贪婪加载 (Eager Loading)以及显示加载. 一.EF Core 1.1 1.当前的版本,还不支持延迟加载(Lazy ...
- .NetCore中EFCore for MySql整理
一.MySql官方提供了Ef Core对MySql的支持,但现在还处于预览版 Install-Package MySql.Data.EntityFrameworkCore -Pre Install-P ...
- js 中时间格式化的几种方法
1.项目中时间返回值,很过时候为毫秒值,我们需要转换成 能够看懂的时间的格式: 例如: yyyy-MM-dd HH:mm:ss 2.处理方法(处理方法有多种,可以传值到前端处理,也可以后台可以好之后再 ...
随机推荐
- 【c++】流状态的查询和控制
源自 c++primer 4th, 248页 代码 #include <iostream> #include <limits> #include <stdexcept&g ...
- Sed - An Introduction and Tutorial by Bruce Barnett
http://www.grymoire.com/unix/sed.html Quick Links - NEW Sed Commands : label # comment {....} Block ...
- Java入门系列-14-深入类和对象
这篇文章用大量的代码帮你搞懂:值传递和引用传递.构造方法.方法重载.static关键字的使用 方法参数传递-值传递和引用传递 1.值传递 敲一敲: /** * 使用方法交换两个变量的值 * @auth ...
- WCF 服务管理
public class ContractManager { IDictionary stateSaver = new Hashtable(); /// <summary> /// 安装服 ...
- 【转】mvc
又看到有人在问三层架构和MVC的关系,感觉这种问题有点教条化了.因为它们都在逻辑上将应用程序划为三块,凑了一个数字3,就有人非要把它们联系到一起了. 这两个东西我接触有几年了,有一点体会,表达一下: ...
- 文档转换为pdf格式帮助类
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Word = M ...
- easyui表单校验拓展
/** * Created by chaozhou on 2016/5/30. */ /** * 扩展的基本校验规则, */ $.extend($.fn.validatebox.defaults.ru ...
- golang学习之win7下go环境搭建
以下均采用windows64环境,首先是go的下载,go有msi安装安装和zip解压安装两种安装方式,使用msi安装后go环境会自动配置,zip解压后需手动配置各种环境变量. 首先是下载,网上一搜一大 ...
- 最近使用日期控件时,用到了My97DatePicker控件,单日期控件,记录一下
以上是使用时的效果,可以自己设定日期有效区间,如下图: 对于起始日期和终止日期的控制如下: <td> <label >起始日期:</label> <input ...
- Hibernate Annotation (Hibernate 注解)
简介: 传统上,Hibernate的配置依赖于外部 XML 文件:数据库映射被定义为一组 XML 映射文件,并且在启动时进行加载. 然而现在借助新的 Hibernate Annotation 库, ...