Answers for "get local time from python"

1

how to get the local time in python

from datetime import datetime
import time
now = datetime.now()
while True:
    print(now.strftime("local time :- %X"))
    time.sleep(2)
Posted by: Guest on October-03-2021

Python Answers by Framework

Browse Popular Code Answers by Language