mu =2400
sigma = 320# ???????, ????
distr = st.norm(mu, sigma)
threshold = 0.75# ???????, ????? ???? ??????? ?????? ???? ?????? ???? ?????????? ????????
max_delivery_price =distr.ppf(threshold)/2 # ???????, ????? ????????? ???????? ??????????
print('???????????? ????????? ???????? ????????:', max_delivery_price)
print('??????, ??? ? ??????')
print(pd.DataFrame(clients_services.T, columns=services))
print()