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

Pythonパンダ-UTCオフセット時間を取得


UTCオフセット時間を取得するには、 timestamp.utcoffset()を使用します 。まず、必要なライブラリをインポートします-

import pandas as pd

タイムスタンプの作成

timestamp = pd.Timestamp('2021-10-16T15:12:34.261811624', tz='UTC')

UTCの日時を含む新しいタイムスタンプ

timestamp.utcnow()

UTCオフセット時間を取得する

timestamp.utcoffset()

以下はコードです

import pandas as pd

# creating a timestamp
timestamp = pd.Timestamp('2021-10-16T15:12:34.261811624', tz='UTC')

# display the Timestamp
print("Timestamp...\n", timestamp)

# new timestamp with UTC day and time
print("\nUTC day and time...\n", timestamp.utcnow())

# Get the UTC offset time
print("\nUTC offset time...\n", timestamp.utcoffset())

出力

これにより、次のコードが生成されます

Timestamp...
 2021-10-16 15:12:34.261811624+00:00

UTC day and time...
 2021-10-03 07:56:44.685816+00:00

UTC offset time...
 0:00:00

  1. PythonPandas-Timestampオブジェクトから現在の日付と時刻を取得します

    Timestampオブジェクトから現在の日付と時刻を取得し、 timestamp.today()を使用します メソッド。 まず、必要なライブラリをインポートします- import pandas as pd import datetime パンダでタイムスタンプを作成する timestamp = pd.Timestamp(datetime.datetime(2021, 10, 10)) タイムスタンプを表示する print("Timestamp: ", timestamp) 現在の日付と時刻を取得する res = timestamp.today() 例 以下はコ

  2. PythonでコンピューターのUTCオフセットを取得するにはどうすればよいですか?

    コンピューターのUTCオフセットは、コンピューターに設定されているタイムゾーンです。タイムモジュールを使用して、このタイムゾーン情報を取得できます。 time.timezoneはUTCオフセットを秒単位で返します。 例 import time print(-time.timezone) # India's timezone: +5:30 出力 これにより、出力が得られます- 19800 他の回避策を使用して、タイムゾーン情報を取得することもできます。 UTCおよびローカルタイムゾーンの日時オブジェクトを作成し、それらを減算して、最終的に差を取得してタイムゾーンを見つけることができま