Answers for "how to get current date and time to the minute python 3"

7

python show current time

from datetime import datetime

now = datetime.now()

current_time = now.strftime("%H:%M:%S")
print("Current Time =", current_time)
Posted by: Guest on April-29-2020

Code answers related to "how to get current date and time to the minute python 3"

Python Answers by Framework

Browse Popular Code Answers by Language