1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Python3で日付の月(数字)を英語名に変換する方法

Last updated at Posted at 2019-11-16

Pythonでは 月の数字(int型の数値1〜12)から直接、月の英語名へ変換する関数が見当たらなかったの、一手間挟んで出力してみました。

ソースコード

# coding: utf-8
import datetime

def MonthNumberToMonthName(month):
    date = datetime.date(2000, month, 1)  #年と日は自由に設定する
    return date.strftime("%B")

# 1月から12月まで表示
for month_number in range(12):
    month_name = MonthNumberToMonthName(month_number)
    print(month_name)
実行結果
January
February
March
April
May
June
July
August
September
October
November
December

以上です。

この処理を単体で使う機会はほとんどないと思いますが、
調べても意外と出てこなかったので、記事として残してみました。
参考になれば、Likeしてもらえると励みになります。

他にもっとシンプルな記述方法を知っている方がいれば教えてくださるとありがたいです。

1
1
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?