Ответ:
array = [1, 7, 3, 19, 3, 76, 3, 3, 90, 13, 8, 3, 12, 6, 3]
number_to_find = array[2]
print(number_to_find)
count = 0
for i in range(len(array)):
if array[i] == number_to_find:
count += 1
print(count)
Объяснение: ...
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
array = [1, 7, 3, 19, 3, 76, 3, 3, 90, 13, 8, 3, 12, 6, 3]
number_to_find = array[2]
print(number_to_find)
count = 0
for i in range(len(array)):
if array[i] == number_to_find:
count += 1
print(count)
Объяснение: ...