[Raspberry Pi] DateTime

import datetime

x = datetime.datetime.now()

print(x)
print(x.month)
print(x.strftime("%B"))

Links