Ответ:
import random
A = [random.randint(1, 100) for i in range(100)]
x = int(input())
print(A.count(x))
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
import random
A = [random.randint(1, 100) for i in range(100)]
x = int(input())
print(A.count(x))
Объяснение: