The function count_zeros_and_ones takes a binary number as input.
It converts the number to a string and counts the occurrences of 0 and 1 using the count() method.
It returns the counts, which are then printed out.
You can replace binary_number with any binary number you'd like to analyze!
The program prompts the user to enter a binary number.
It checks if the input contains only 0s and 1s using a generator expression.
If the input is valid, it calls the count_zeros_and_ones function and prints the results. If not, it notifies the user of the invalid input.