/
ilya.petrash
/
SimplePyScripts
Обзор
Документация
Войти
/
ilya.petrash
/
SimplePyScripts
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
datetime_example/datetime_example.py
21 строка
505 B
gil9red
Refactoring. Using black code style
28 апр 2023, 11:19
28 апр 2023, 11:19
54ae570
Код
Авторство
О чём код?
__author__ = "ipetrash" # TODO: больше примеров # https://docs.python.org/3.4/library/datetime.html # http://pythonworld.ru/moduli/modul-datetime.html from datetime import date if __name__ == "__main__": # Dates are easily constructed and formatted now = date.today() print(now) print(now.strftime("%m-%d-%y. %d %b %Y is a %A on the %d day of %B.")) # Dates support calendar arithmetic birthday = date(1964, 7, 31) age = now - birthday print(age.days)