SUPPORT UKRAINE
- Your indifference to the act of cruelty can thrive rogue nations like Russia -
タグ
strptime
を含むブログ一覧
1
Python Cookbook [3.15. Converting Strings into Datetimes : 文字列を Datetime 型へ変換する]
Published 2020年4月21日18:59 by mootaro23
Problem:
日付形式の文字列を datetime オブジェクトへ変換したい。
Solution:
Python 標準の datetime モジュールの利用で簡単に実現できます。
from datetime import datetime
text = "2020-04-21"
a = datetime.strptime(text, '%Y-%m-%d')
b …
1