Pythonで現在の日付を取得する方法 - コード例付きの詳細な解説 方法1: datetimeモジュールを使用する方法import datetime current_date = datetime.date.today() print(current_date)>>More