Shamil
?>

Что не так в этом коде (Python): from collections import dequegraph = {}graph ["you"] = ["alice", "bob", "claire"]graph ["bob] = ["anuj", "peggy"]graph ["alice"] = ["peggy"]graph ["claire"] = ["thom", "jonny"]graph ["anuj"] = []graph ["peggy"] = []graph ["thom"] = []graph ["jonny"] = []def search (name): search_queue = deque () search_queue += graph [name] while search_queue: person = search_queue.popleft () if not person_is_seller (person): print (person + " is a mango seller!") return True else: search_queue += graph [person] searched.append (person) return Falsesearch ("you")

Информатика

Ответы

larisau41

print("Введите длины сторон предполагаемого треугольника:")

a = float(input("a = "))

b = float(input("b = "))

c = float(input("c = "))

if a + b > c and a + c > b and b + c > a:

print("Треугольник существует")

       if a == b and a == c and b == c:

                print("Треугольник равносторонний")

       else:

       if a == b or a == c or b == c

                print("Треугольник равнобедренный")

       else:

                 print("Треугольник разносторонний")

else:

print("Треугольник не существует")

Ответить на вопрос

Поделитесь своими знаниями, ответьте на вопрос:

Что не так в этом коде (Python): from collections import dequegraph = {}graph ["you"] = ["alice", "bob", "claire"]graph ["bob] = ["anuj", "peggy"]graph ["alice"] = ["peggy"]graph ["claire"] = ["thom", "jonny"]graph ["anuj"] = []graph ["peggy"] = []graph ["thom"] = []graph ["jonny"] = []def search (name): search_queue = deque () search_queue += graph [name] while search_queue: person = search_queue.popleft () if not person_is_seller (person): print (person + " is a mango seller!") return True else: search_queue += graph [person] searched.append (person) return Falsesearch ("you")
Ваше имя (никнейм)*
Email*
Комментарий*