Answers for "a for loop that get the current time in python"

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 "a for loop that get the current time in python"

Python Answers by Framework

Browse Popular Code Answers by Language