Answers for "print date python"

1

how to print date and time in python

import datetime
now = datetime.datetime.now()
print ("Current date and time : ")
print (now.strftime("%Y-%m-%d %H:%M:%S"))
Posted by: Guest on March-02-2020
4

print current date

from datetime import date

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

python printing date

import datetime
print(datetime.datetime.now()) # --> (year, month, day, hour, minute, second, millisecond)
Posted by: Guest on October-03-2020
0

python print datetime

import datetime
print("Now:", datetime.datetime.now())
Posted by: Guest on August-23-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language