Answers for "how to get the name of the current day in python"

3

python get day name

import datetime
now = datetime.datetime.now()
print(now.strftime("%A"))
Posted by: Guest on June-07-2020

Code answers related to "how to get the name of the current day in python"

Python Answers by Framework

Browse Popular Code Answers by Language