Contoh daftar Python () dengan angka

numbers = [2,3,5,9,10,6,9,9]
num_count = numbers.count(9)
print('The count of element: 9 is ', num_count)
Outrageous Ostrich