-
Notifications
You must be signed in to change notification settings - Fork 180
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
E_Maksimova_lesson_05 #1261
base: master
Are you sure you want to change the base?
E_Maksimova_lesson_05 #1261
Conversation
av_profit = average_profit(firms_data) | ||
print(f'\nСредняя годовая прибыль всех предприятий: {av_profit}') | ||
print('\nПредприятия с прыбылью выше средней:', *over_profit(firms_data, av_profit), sep='\n') | ||
print('\nПредприятия с прыбылью ниже средней:', *below_profit(firms_data, av_profit), sep='\n') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
выполнено
number_2 = HexNumber(input('Введите второе число: ')) | ||
print(f'Числа теперь выглядят так: {number_1} и {number_2}') | ||
print(f'Сумма чисел: {number_1 + number_2}') | ||
print(f'Произведение чисел: {number_1 * number_2}') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
выполнено
# По результатам замеров видно, что информация в документации соответствует действительности: | ||
# очередь незначительно хуже справляется с добавлением и извлечением элементов с конца, | ||
# и гораздо быстрее выполняет операции извлечения и вставки элементов в начало, а вот при работе с обращением | ||
# по индексу и вставкой или извлечением элементов из произвольной позиции имеет смысл обратиться к списку. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
выполнено
# где он используется для реализации какого-то функционала или в версиях Python до 3.7. | ||
# В прочих случаях обычный словарь работает либо быстрее, либо примерно с той же скоростью, | ||
# имеет более читаемое представление и с версии 3.7 сохраняет порядок внесения элементов. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
выполнено
ДЗ к уроку 5, Алгоритмы и структуры данных, старт 09.03.2021, Максимова Елена