Python では、現在時刻を取得する方法が複数あります。便利なオプションの 1 つは、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 サイトの他の関連記事を参照してください。