エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
ユリウス日とグレゴリウス暦日付との間の換算 - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
ユリウス日とグレゴリウス暦日付との間の換算 - Qiita
#!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import division from __future__ imp... #!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import division from __future__ import print_function # n: the continuous count of days since March first in 1 B.C. proleptic Gregorian # date = (year, month, day) in the proleptic Gregorian calendar # ymd = (y, m, d); modified date in the proleptic Gregorian calendar (see date2ymd() below) DELTA_N_MJD = {"Julian": 678883, "Gregorian":

