ホームページ >バックエンド開発 >Python チュートリアル >Pythonで現在時刻を取得するには?

Pythonで現在時刻を取得するには?

Susan Sarandon
Susan Sarandonオリジナル
2024-11-23 07:57:111052ブラウズ

How to Get the Current Time in Python?

Python で現在時刻を取得する方法

Python では、現在時刻を取得する方法が複数あります。便利なオプションの 1 つは、datetime モジュールを利用することです。

datetime の使用

# Import the datetime module
import datetime

# Get the current datetime object
now = datetime.datetime.now()

# Print the datetime object
print(now)  # Output: datetime.datetime(2023, 3, 8, 14, 35, 22, 123456)

時刻の取得

日付を含まずに時刻のみを取得するには、以下を使用できます。

# Get the current clock time
current_time = now.time()

# Print the clock time
print(current_time)  # Output: time(14, 35, 22, 123456)

インポートの簡素化

簡素化するにはコードを作成すると、datetime モジュールから datetime オブジェクトを直接インポートできます。

from datetime import datetime

# Get the current datetime object
now = datetime.now()

このアプローチでは、datetime を使用する必要がなくなります。 datetime モジュール関数を呼び出すときの接頭辞。

以上がPythonで現在時刻を取得するには?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。