“Python DateTime Strftime” Respostas de código

string python DateTime

import datetime

today = datetime.datetime.now()
date_time = today.strftime("%m/%d/%Y, %H:%M:%S")
print("date and time:",date_time)
marcofaga

Python DateTime Strftime

# import datetime module from datetime
from datetime import datetime

# consider the time stamps from a list in string
# format DD/MM/YY H:M:S.micros
time_data = ["25/05/99 02:35:8.023", "26/05/99 12:45:0.003",
			"27/05/99 07:35:5.523", "28/05/99 05:15:55.523"]

# format the string in the given format : day/month/year
# hours/minutes/seconds-micro seconds
format_data = "%d/%m/%y %H:%M:%S.%f"

# Using strptime with datetime we will format string
# into datetime
for i in time_data:
	print(datetime.strptime(i, format_data))
Outrageous Ostrich

data strftime python

import datetime
datetime.datetime.now().strftime ("%Y%m%d")
20151015
Clear Curlew

O Python trabalha no tempo com objetos de data

Yes, the strftime() method returns a string representing date and time using 
date, 
time or 
datetime object.
Powerful Penguin

Respostas semelhantes a “Python DateTime Strftime”

Perguntas semelhantes a “Python DateTime Strftime”

Procure respostas de código populares por idioma

Procurar outros idiomas de código