-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurrent_date.py
28 lines (22 loc) · 1.1 KB
/
current_date.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from datetime import datetime, timedelta
class CurrentDate:
def __init__(self):
self.__date = datetime.today().date()
def add_days(self, number_of_days: int) -> bool:
if number_of_days >=0 and number_of_days <= 3000:
self.__date += timedelta(days = number_of_days)
return True
else:
print("-> Ошибка! Количество дней указано неверно. Укажите целое число в диапазоне 0 .. 3000.")
return False
def sub_days(self, number_of_days: int) -> bool:
if number_of_days >=0 and number_of_days <= 3000:
self.__date -= timedelta(days = number_of_days)
return True
else:
print("-> Ошибка! Количество дней указано неверно. Укажите целое число в диапазоне 0 .. 3000.")
return False
def get_date(self) -> datetime.date:
return self.__date
def get_date_string(self) -> str:
return self.__date.strftime("%d.%m.%Y")