Answers for "pythno time now"

0

python currnent time now

from datetime import datetime
now = datetime.now()
print(now.strftime("%d/%m/%Y %H:%M:%S"))
Posted by: Guest on July-16-2021
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

Python Answers by Framework

Browse Popular Code Answers by Language