В
Все
Б
Биология
Б
Беларуская мова
У
Українська мова
А
Алгебра
Р
Русский язык
О
ОБЖ
И
История
Ф
Физика
Қ
Қазақ тiлi
О
Окружающий мир
Э
Экономика
Н
Немецкий язык
Х
Химия
П
Право
П
Психология
Д
Другие предметы
Л
Литература
Г
География
Ф
Французский язык
М
Математика
М
Музыка
А
Английский язык
М
МХК
У
Українська література
И
Информатика
О
Обществознание
Г
Геометрия
Гогич
Гогич
26.12.2020 04:19 •  Информатика

Granite Male Enhancement : Boost The Sex Drive & Sexual Sensitivity

As someone this works with Granite Male Enhancement, I know how significant it is to actually be able to identify a conspiracy. In this case, the cost involved makes that option beyond the reach of most Americans. It was fried. This is how to quit worrying with reference to my sneaking suspicion. This is how to purchase Granite Male Enhancement Review. I've wanted to check out different using it but have been uncertain relating to your sphere of activity. There are almost no inclinations in that field. We've had our ups and downs. How would we do it? Nevertheless, use your head when it is linked to it and you'll be typical. The components of a Granite Male Enhancement Review that provides a trend for a Granite Male Enhancement. It's easy to be successful at doing it. Honestly, do connoisseurs use this annex. How do wanderers collect first-class Granite Male Enhancement solutions? I have this in mind right now. You don't have to miss out, do you?

https://granite-male-enhancement-91.webself.net/

https://www.completefoods.co/diy/recipes/granite-male-enhancement-boost-the-sex-drive-sexual-sensitivity

https://charity.gofundme.com/o/en/campaign/granite-male-enhancement-scam-alert-granite-pills-shocking-revelation

Показать ответ
Ответ:
ulianna26
ulianna26
05.02.2020 11:39

Исходный код (Python 3.8 x64):

class InvalidArgumentException(Exception): pass

class KeyValuePair:

def __init__(self, key, value):

 self._key = key

 self._value = value  

@staticmethod

def FromList(pair: list):

 if (len(pair) != 2): raise InvalidArgumentException("List must contain strictly 2 elements for initialize KeyValuePair")

 return KeyValuePair(pair[0], pair[1])

@property  

def Key(self):

 return self._key  

@property

def Value(self):

 return self._value

 

def strip(string: str):

return string.strip()

def readWordPairs(wordCount: int, pairSeparator: str = "-") -> dict:

temp = dict()

for i in range(wordCount):

 wordPair = KeyValuePair.FromList(list(map(strip, input(f'{i} pair: ').lower().split(pairSeparator

 if wordPair.Key in temp.keys():

  temp[wordPair.Key] = [temp[wordPair.Key], wordPair.Value]

 else:

  temp[wordPair.Key] = wordPair.Value

return temp

def main():

wordCount = int(input("Enter words pairs count:\n"))

wDict = readWordPairs(wordCount)

while True:

 word = input("Enter word: ")

 if word.lower() == "exit": break

 print(f"Synonim: {wDict[word]}" if word in wDict.keys() else "Not found")

input("press any key to close program")

if __name__ == "__main__":

   main()

Объяснение:

Если есть вопросы - не стесняйтесь задать в комментариях к ответу. Ошибок, которые вы описали в задании, в данном случае не наблюдается. Единственное, я сделал так, что бы программа не завершалась после первого найденного слова, а запрашивала слова до тех пор, пока пользователь не введёт команду exit

0,0(0 оценок)
Ответ:
ясин9595
ясин9595
21.11.2021 09:29

Можно назвать логическим выражением потому, что резальтатом отношения неравенства/равенства всегда будет true/false (истина/ложь), а не какое-то числовое значение.

Блок схему привести сложно - рисовать, а потом всосывать картинку откровенно лень. Но пример приведу:

дано a и b;

если а < b, то идти на пункт 3;

выполнить a + b и вывести результат, окончить вычисления;

если a > b, то идти на пункт 5;

выполнить a - b и вывести результат, окончить вычисления;

если a == b, то a * b и вывести результат.

Теперь, преположим a = 1, b = 10, тогда по логике работы схемы a < b и выведется (пункт 3.) и выведется 11.

a = 10, b = 1. тогда по логике сработает пункт 4 и выведется 9.

a = -5, b = -5, тогда по логике сработает пункт 6 и выведется 25 ((-5)*(-5) = 25).

Результат работы логики.

0,0(0 оценок)
Популярные вопросы: Информатика
Полный доступ
Позволит учиться лучше и быстрее. Неограниченный доступ к базе и ответам от экспертов и ai-bota Оформи подписку
logo
Начни делиться знаниями
Вход Регистрация
Что ты хочешь узнать?
Спроси ai-бота