This repository has been archived on 2025-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
python_it_top/12-09/task2_rpo254.py

13 lines
361 B
Python
Raw Normal View History

2025-09-12 15:12:42 +05:00
import sys
number = int(input("Введите число :: "))
stage = float(input("Введите степень(0-7) :: "))
if stage <= 7 and stage >= 1:
numbd = number ** stage
print("Ответ: {}".format(numbd))
sys.exit(1)
else:
print("ОШИБКА, введена степень выше/ниже диапазона")
sys.exit(1)