Python
 Computer >> コンピューター >  >> プログラミング >> Python

Numpyを使用して、今日、昨日、明日の日付を印刷します


このプログラムでは、numpyライブラリを使用して、今日、昨日、明日の日付を印刷します。

アルゴリズム

Step 1: Import the numpy library.
Step 2: find today's date using the datetime64() function.
Step 3: find yesterday's date by subtracting the output of timedelta64() function from the output of datetime64() function.
Step 4: Find yesterday's date by adding the output of timedelta64() function from the output of datetime64() function.

サンプルコード

import numpy as np

todays_date = np.datetime64('today', 'D')
print("Today's Date: ", todays_date)

yesterdays_date = np.datetime64('today', 'D') - np.timedelta64(1, 'D')
print("Yesterday's Date: ", yesterdays_date)

tomorrows_date = np.datetime64('today', 'D') + np.timedelta64(1, 'D')
print("Tomorrow's Date: ", tomorrows_date)

出力

Today's Date: 2021-02-16
Yesterday's Date: 2021-02-15
Tomorrow's Date: 2021-02-17

説明

numpyには、日時機能をサポートするデータ型があります。 「datetime64」という名前は、Pythonのライブラリによってすでに使用されているため、関数に付けられています。

datetime64()関数の「D」パラメーターは、「日」単位で日付を取得するためのものです。 timedelta64()関数は、日、時間、分、秒などの時間の違いを表すために使用されます。


  1. 日付と時刻機能を使用してWord文書に日付を挿入および更新する方法

    Microsoft Word 、ユーザーは、現在の日付または日付と時刻を、日付と時刻の機能を使用して自動的に更新できるテキストまたはフィールドとして挿入できます。 。このチュートリアルでは、現在の日付を挿入する方法、自動的に更新される日付を挿入する方法、および日付フィールドを編集または更新する方法について説明します。 Wordのこの機能は、ドキュメントに日付と時刻を即座に追加します。 現在の日付をWordに挿入する方法 挿入について テキストのタブ グループで、日付と時刻を挿入をクリックします ボタン。 日付と時刻 ダイアログボックスが開きます。 ダイアログボックス内に、必要な日付と

  2. 日付操作用のPythonモジュールとは何ですか?

    Pythonには、日付と時刻の解析、書式設定、および算術演算を行うための関数とクラスを含む組み込みモジュールdatetimeがあります。時間値は、時間クラスを使用して表されます。時間、分、秒、およびマイクロ秒の属性があります。タイムゾーン情報を含めることもできます。 例 import datetime t = datetime.time(1, 2, 3) print t print 'hour  :', t.hour print 'minute:', t.minute print 'second:', t.second print &#