| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

差分

ナビゲーションに移動 検索に移動
65 バイト追加 、 2020年2月15日 (土) 08:05
編集の要約なし
==Python 書式==
[[Python]]{{category 書式}}
*http://docs.python.jp/2/library/string.html#string.Formatter
*http://anh.cs.luc.edu/python/hands-on/3.1/handsonHtml/float.html
|-
|}
>>> >>> t = 173 >>> >>> w = 73 >>> >>> print 'あなたのBMIは、%0.1f です。' % (w / ((t/100.0)*2))
あなたのBMIは、21.1 です。
%(辞書のキー)コード
>>> >>> print '%(donuts)s、%(remon)s' % {'donuts':'ドはドーナツのド','remon':'レはレモンのレ'}
ドはドーナツのド、レはレモンのレ
===日付の書式設定===
>>> >>> time.strftime('%Y/%m/%d', time.localtime())
'2010/02/24'
>>> >>> datetime.today().strftime('%Y%m%d')
'20100224'
>>> >>> datetime.fromtimestamp(os.stat(r'/test.txt').st_ctime).strftime('%Y%m%d')
'20090824'

案内メニュー