Ответ:
Код
Объяснение:
numbers = [42, 25, 94, 79, 86, 51, 99, 70, 74, 25]
max_num = max(numbers)
max_index = numbers.index(max_num)
print(f"{max_index}-й, {max_num}")
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Код
Объяснение:
numbers = [42, 25, 94, 79, 86, 51, 99, 70, 74, 25]
max_num = max(numbers)
max_index = numbers.index(max_num)
print(f"{max_index}-й, {max_num}")