Answers for "print time and date in python"

1

how to print time python 3

import datetime
now = datetime.datetime.now()
print (now.strftime("%Y-%m-%d %H:%M:%S"))
# key: https://strftime.org/
Posted by: Guest on March-17-2020
4

print current date

from datetime import date

today = date.today()
print("Today's date:", today)
Posted by: Guest on April-28-2020

Code answers related to "print time and date in python"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language