-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathge-shi-hua-zi-fu-chuan-shi-jian.html
169 lines (157 loc) · 10.2 KB
/
ge-shi-hua-zi-fu-chuan-shi-jian.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Won" />
<meta name="copyright" content="Won" />
<meta name="keywords" content="Python, It, " />
<title>格式化字符串——时间 · Tugqi Biz
</title>
<link href="http://cdn-images.mailchimp.com/embedcode/slim-081711.css" rel="stylesheet" type="text/css">
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://wbowam.github.io/theme/css/style.css" media="screen">
<link rel="stylesheet" type="text/css" href="http://wbowam.github.io/theme/css/solarizedlight.css" media="screen">
<link rel="shortcut icon" href="http://wbowam.github.io/theme/images/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="http://wbowam.github.io/theme/images/apple-touch-icon.png" />
<link rel="apple-touch-icon" sizes="57x57" href="http://wbowam.github.io/theme/images/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="http://wbowam.github.io/theme/images/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="http://wbowam.github.io/theme/images/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="144x144" href="http://wbowam.github.io/theme/images/apple-touch-icon-144x144.png" />
<link rel="icon" href="http://wbowam.github.io/theme/images/apple-touch-icon-144x144.png" />
</head>
<body>
<div id="content-sans-footer">
<div class="navbar navbar-static-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="http://wbowam.github.io/"><span class=site-name>Tugqi Biz</span></a>
<div class="nav-collapse collapse">
<ul class="nav pull-right top-menu">
<li ><a href="http://wbowam.github.io">Home</a></li>
<li ><a href="http://wbowam.github.io/categories.html">Categories</a></li>
<li ><a href="http://wbowam.github.io/tags.html">Tags</a></li>
<li ><a href="http://wbowam.github.io/archives.html">Archives</a></li>
<li><form class="navbar-search" action="http://wbowam.github.io/search.html" onsubmit="return validateForm(this.elements['q'].value);"> <input type="text" class="search-query" placeholder="Search" name="q" id="tipue_search_input"></form></li>
</ul>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row-fluid">
<div class="span1"></div>
<div class="span10">
<article>
<div class="row-fluid">
<header class="page_header span10">
<h1><a href="http://wbowam.github.io/ge-shi-hua-zi-fu-chuan-shi-jian.html"> 格式化字符串——时间 </a></h1>
</header>
</div>
<div class="row-fluid">
<div class="span10 article-content">
<p>之前介绍过<a href="http://tulpar008.github.io/ben-ban-fa-xue-python.html">格式化字符串</a> <br />
本篇专门介绍格式化字符串——时间 </p>
<hr />
<p>所有日期、时间的api都在datetime模块内。</p>
<h5 id="1-datetime-string">1. datetime => string<a class="headerlink" href="#1-datetime-string" title="Permanent link">¶</a></h5>
<div class="highlight"><pre><span class="n">now</span> <span class="o">=</span> <span class="n">datetime</span><span class="p">.</span><span class="n">datetime</span><span class="p">.</span><span class="n">now</span><span class="p">()</span>
<span class="n">now</span><span class="p">.</span><span class="n">strftime</span><span class="p">(</span><span class="err">'</span><span class="o">%</span><span class="n">Y</span><span class="o">-%</span><span class="n">m</span><span class="o">-%</span><span class="n">d</span> <span class="o">%</span><span class="n">H</span><span class="o">:%</span><span class="n">M</span><span class="o">:%</span><span class="n">S</span><span class="err">'</span><span class="p">)</span>
<span class="err">输出</span><span class="mi">2012</span><span class="o">-</span><span class="mo">03</span><span class="o">-</span><span class="mo">05</span> <span class="mi">16</span><span class="o">:</span><span class="mi">26</span><span class="o">:</span><span class="mf">23.870105</span>
</pre></div>
<p>strftime是datetime类的实例方法。</p>
<h5 id="2-string-datetime">2. string => datetime<a class="headerlink" href="#2-string-datetime" title="Permanent link">¶</a></h5>
<div class="highlight"><pre><span class="n">t_str</span> <span class="o">=</span> <span class="err">'</span><span class="mi">2012</span><span class="o">-</span><span class="mo">03</span><span class="o">-</span><span class="mo">05</span> <span class="mi">16</span><span class="o">:</span><span class="mi">26</span><span class="o">:</span><span class="mi">23</span><span class="err">'</span>
<span class="n">d</span> <span class="o">=</span> <span class="n">datetime</span><span class="p">.</span><span class="n">datetime</span><span class="p">.</span><span class="n">strptime</span><span class="p">(</span><span class="n">t_str</span><span class="p">,</span> <span class="err">'</span><span class="o">%</span><span class="n">Y</span><span class="o">-%</span><span class="n">m</span><span class="o">-%</span><span class="n">d</span> <span class="o">%</span><span class="n">H</span><span class="o">:%</span><span class="n">M</span><span class="o">:%</span><span class="n">S</span><span class="err">'</span><span class="p">)</span>
</pre></div>
<p>strptime是datetime类的静态方法。</p>
<h5 id="_1">有关时间的更多格式化字符串:<a class="headerlink" href="#_1" title="Permanent link">¶</a></h5>
<div class="highlight"><pre><span class="c">%a Abbreviated weekday name</span>
<span class="c">%A Full weekday name</span>
<span class="c">%b Abbreviated month name</span>
<span class="c">%B Full month name</span>
<span class="c">%c Date and time representation appropriate for locale</span>
<span class="c">%d Day of month as decimal number (01 - 31)</span>
<span class="c">%H Hour in 24-hour format (00 - 23)</span>
<span class="c">%I Hour in 12-hour format (01 - 12)</span>
<span class="c">%j Day of year as decimal number (001 - 366)</span>
<span class="c">%m Month as decimal number (01 - 12)</span>
<span class="c">%M Minute as decimal number (00 - 59)</span>
<span class="c">%p Current locale's A.M./P.M. indicator for 12-hour clock</span>
<span class="c">%S Second as decimal number (00 - 59)</span>
<span class="c">%U Week of year as decimal number, with Sunday as first day of week (00 - 51)</span>
<span class="c">%w Weekday as decimal number (0 - 6; Sunday is 0)</span>
<span class="c">%W Week of year as decimal number, with Monday as first day of week (00 - 51)</span>
<span class="c">%x Date representation for current locale</span>
<span class="c">%X Time representation for current locale</span>
<span class="c">%y Year without century, as decimal number (00 - 99)</span>
<span class="c">%Y Year with century, as decimal number</span>
<span class="c">%z, %Z Time-zone name or abbreviation; no characters if time zone is unknown</span>
<span class="c">%% Percent sign</span>
</pre></div>
<aside>
<hr/>
<nav>
<ul class="articles_timeline">
<li class="previous_article">« <a href="http://wbowam.github.io/pythonshi-jian-cao-zuo.html" title="Previous: Python时间操作">Python时间操作</a></li>
<li class="next_article"><a href="http://wbowam.github.io/hui-jia-lu.html" title="Next: 回家路">回家路</a> »</li>
</ul>
</nav>
</aside>
<!-- Duoshuo Comment BEGIN -->
<div class="ds-thread" data-author-key="4433755"></div>
<script type="text/javascript">
var duoshuoQuery = {short_name:"tlbog"};
(function() {
var ds = document.createElement('script');
ds.type = 'text/javascript';ds.async = true;
ds.src = 'http://static.duoshuo.com/embed.js';
ds.charset = 'UTF-8';
(document.getElementsByTagName('head')[0]
|| document.getElementsByTagName('body')[0]).appendChild(ds);
})();
</script>
<!-- Duoshuo Comment END -->
</div>
<section>
<div class="span2" style="float:right;font-size:0.9em;">
<h4>Published</h4>
<time pubdate="pubdate" datetime="2014-07-08T00:00:00+08:00">Jul 8, 2014</time>
<h4>Category</h4>
<a class="category-link" href="/categories.html#It-ref">It</a>
<h4>Tags</h4>
<ul class="list-of-tags tags-in-article">
<li><a href="/tags.html#Python-ref">Python
<span>15</span>
</a></li>
</ul>
</div>
</section>
</div>
</article>
</div>
<div class="span1"></div>
</div>
</div>
</div>
<footer>
<div id="footer">
<ul class="footer-content">
<li class="elegant-power">Powered by <a href="http://getpelican.com/" title="Pelican Home Page">Pelican</a>. Theme: <a href="http://oncrashreboot.com/pelican-elegant" title="Theme Elegant Home Page">Elegant</a> by <a href="http://oncrashreboot.com" title="Talha Mansoor Home Page">Talha Mansoor</a></li>
</ul>
</div>
</footer> <script src="http://code.jquery.com/jquery.min.js"></script>
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/js/bootstrap.min.js"></script>
<script>
function validateForm(query)
{
return (query.length > 0);
}
</script>
</body>
</html>