Answers for "date only in python"

1

python datetime date only

# Use the date() method:
datetime.datetime.now().date()
Posted by: Guest on April-09-2021
3

how to set datetime format in python

import datetime

x = datetime.datetime(2018, 9, 15)

print(x.strftime("%b %d %Y %H:%M:%S"))
Posted by: Guest on May-15-2020

Python Answers by Framework

Browse Popular Code Answers by Language