Код:
def triangle():
a = float(input("Введите a: ").strip())
b = float(input("Введите b: ").strip())
c = float(input("Введите c: ").strip())
if sum((a, b, c)) == 180:
correctly = True
else:
correctly = False
return correctly
Код:
def triangle():
a = float(input("Введите a: ").strip())
b = float(input("Введите b: ").strip())
c = float(input("Введите c: ").strip())
if sum((a, b, c)) == 180:
correctly = True
else:
correctly = False
return correctly