Which function allows you to display the name of the month?
>>>import time

>>>aTime = time.locatime()

>>>time.__________("%B",aTime)

Sample Output:
'March'

Respuesta :

Answer:

strftime

Explanation:

>>> import time

>>> aTime = time.localtime()

>>> time.strftime("%B",aTime)

'May'