get month from date python code example

Example 1: Javascript get month name

var  months = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
var d = new Date();
var monthName=months[d.getMonth()]; // "July" (or current month)

Example 2: python get current month

Use:

from datetime import datetime
today = datetime.today()
datem = datetime(today.year, today.month, 1)
I assume you want the first of the month.

Example 3: get day month year from date c#

// can add : or / to seperate dates and time
DateTime.Now.ToString("yyyyMMddhhmmss")

Tags:

Java Example