PYTHON. Напишите программу для печати даты и времени на текущий момент в различных форматах как в исходных данных. Используйте модули time и datetime. Входные данные:
Нету
Исходные данные:
Current date and time: 2019-07-26 21: 00: 41.004061
Current year: 2019 Month of year: July
Week number of the year: 29 Weekday of the week: 5
Day of year: 207 Day of the month: 26 Day of week: Friday
Объяснение:
Можно воспользоваться функцией strftime() для преобразования текущей даты в нужный формат
import datetime as dt
today = dt.datetime.today()
print('Current date and time:', today)
print('Current year:', today.strftime("%Y"),
' Month of year:', today.strftime("%B"))
print('Week number of the year:', today.strftime("%W"),
'Weekday of the week:', today.strftime("%w") )
print('Day of year:', today.strftime("%j"), 'Day of the month:',
today.strftime("%d"), 'Day of week:', today.strftime("%A"))
Питон очень привередлив с отступами - после копирования, надо правильно выставить отступы