“Python DateTime Strftime” Ответ

Python DateTime String

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

Дата Strftime Python

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

Python работает с объектами даты

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

Ответы похожие на “Python DateTime Strftime”

Вопросы похожие на “Python DateTime Strftime”

Смотреть популярные ответы по языку

Смотреть другие языки программирования