Python Get Current Minute Example

Published On: 31/08/2022 | Category: Python


Hi Guys,

Now, let's see tutorial of python get current hour example. you'll learn how to get current hour in python. We will use how to get current hour in python 3. This article goes in detailed on python get today hour.

Here, I will show you python get current minute example. you will learn how to get current minute in python. you can see how to get current minute in python 3. you will learn python get today minute.

So let's see bellow example:

Example 1: main.py
from datetime import datetime
  
today = datetime.now()
  
print("Current Date and Time :", today)
print("Current Minute :", today.minute)
Output:
Current Date and Time : 2022-08-31 05:32:40.623474
Current Minute : 32
Example 2: main.py
from datetime import datetime
  
today = datetime.now()
    
minute1 = today.strftime("%M")
print("Current Minute:", minute1);
Output:
Current Minute: 33

It will help you....