Answers for "get os time 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

Python Answers by Framework

Browse Popular Code Answers by Language