Hi. I am using python to get the current time and date using the datetime module. The date is being printed in number.
time=datetime.datetime.now()
print(time)
2019-05-09 13:02:27.989905
I want to convert it into the name of the months. How can I do?