top of page
learn_data_science.jpg

Data Scientist Program

 

Free Online Data Science Training for Complete Beginners.
 


No prior coding knowledge required!

Count the number of zeroes, odds, and evens in a n-digits number


In our daily lives, we may need to count odd and even numbers. For instance, in the library, you are trying to know the numbers of books having odd numbers or even numbers. It can happen also that in a given digits numbers, we wanted to know the number (count) of odd numbers and even numbers or zero.


Even numbers, are numbers when you divide by 2, the remainder is 0 in opposite with odd numbers where you will get a remainder which is 1. We can also say that even numbers are numbers that are divisible by 2 and odd numbers are not divisible by 2.


We can use python programming to build an app that we can use to go through a lengthy integer to count the number of odd, even, and zero numbers that occur.


def digits_count(digits):
    """ Takes a list of single digits and returns the 
        count of zeros, evens and odds
    """
    zero = 0
    even= 0
    odd= 0

We define our function to count zero, even, and odd numbers. Our variables zero, even, and odd are assign to zero because it will help later to increment them.


    for i in digits:
        if i == 0:
            zero += 1
        elif i % 2 == 0:
            even += 1
        else:
            odd += 1
        return zero, even, odd

The for loop is to assign to i each value of in the n-digits to make the program easy and also the calculation. now, when the program will meet i=0, then it will increment(augmentation) the variable zero, if the remainder of de division is 0, it increments the variable even, else (the remainder is different than 0), the program increment our variable odd. The program will then return zero, even, and odd values.


digit_input = input("Enter a n-digits number please: ")
digits = [int(i) for i in digit_input] 

zero, even, odd = digits_count(digits)

print('zero: %d' % zero)
print('even: %d' % even)
print('odd: %d' % odd)

Our function (def digits_count(digits) ) does not give an error after runing, now the user should enter a n-digits number. the snippet digits = [int(i) for i in digit_input] is to avoid the error int object is not iterable.



Now we can try our program if it will works.


Enter a ten-digit number please: 021369495970340464277
zero: 3
even: 8
odd: 10

Clique on SOURCE CODE to have a jupyter notebook and try to play around with it and add more conditions or others functions as you want. Because programming is about doing more practice even if it is the same problem. We can solve many problems using python programming and this will make life easy. If you like share with others and follow me for more post.


Do not hesitate to send your feedback for improvement.


3 comments

Recent Posts

See All

COURSES, PROGRAMS & CERTIFICATIONS

 

Advanced Business Analytics Specialization

Applied Data Science with Python (University of Michigan)

Data Analyst Professional Certificate (IBM)

Data Science Professional Certificate (IBM)

Data Science Specialization (John Hopkins University)

Data Science with Python Certification Training 

Data Scientist Career Path

Data Scientist Nano Degree Program

Data Scientist Program

Deep Learning Specialization

Machine Learning Course (Andrew Ng @ Stanford)

Machine Learning, Data Science and Deep Learning

Machine Learning Specialization (University of Washington)

Master Python for Data Science

Mathematics for Machine Learning (Imperial College London)

Programming with Python

Python for Everybody Specialization (University of Michigan)

Python Machine Learning Certification Training

Reinforcement Learning Specialization (University of Alberta)

Join our mailing list

Data Insight participates in affiliate programs and may sometimes get a commission through purchases made through our links without any additional cost to our visitors.

bottom of page