[python] 日付の取り扱い(datetime) 現在日付、計算、文字列変換(format)
現在日付
1 2 3 4 5 6 7 8 9 |
import datetime today = datetime.date.today() print today # 年 print today.year # 月 print today.month # 日 print today.day |
日付の計算
1 2 3 4 5 |
import datetime today = datetime.date.today() yesterday = today - datetime.timedelta(days=1) print today print yesterday |
文字列変換(フォーマット,format)
1 2 3 |
import datetime today = datetime.date.today() print today.strftime("%Y/%m/%d") |
スポンサードリンク
関連記事
-
[python] 文字列結合
pythonでの文字列結合 サンプル
-
[python] ファイルの読み込み
pythonでのファイルの読み込み方法 基本サンプル CSVファイルの読み込み
-
[Python] 型の検査・判定
Pythonでの型の検査・判定方法 isinstance サンプル [crayon-674
-
Compute Engine(GCE)にpyenv環境を作ってみた
pyenvのインストール 必要なOSモジュールのインストール https://
-
[Python] Nullの判定方法(None)
Nullの判定方法(None) 表記方法 Pythonでは、Nullを「None」と表記します。
-
pythonでstorage transfer serviceを使ってみた。
準備 pythonのインストールとかする。 このあたり。http://kei0310.
-
[python] 配列の扱い方
pythonでの配列の扱い方 python 配列の作成 python 配
スポンサードリンク
- PREV
- [python] 文字列結合
- NEXT
- [Python] 型の検査・判定