Skip to main content

Sum and Product of given Digits

* Our objective is to find the sum of given digits i.e.; 2+4+3=9

# sum of given digits code:--

n = int(input('Enter number:'))

sum =0

while n>0:

    sum = sum + (n%10)

    n = n//10

print('Sum of digits=', sum)

# Output: Enter number:243

                Sum of digits= 9


>> Lets look at the program--

1) First we'll take an input from the user

   Say n = 243


2) Secondly, we'll initialize the variable

   sum = 0


3) We'll build a loop

   i.e.; while n>0:


4) Now we'll build our logic as

   sum = sum + (n%10)        ----eq.1


>> Lets see how this logic works--

Here, at the R.H.S we have

sum + (n%10)    ----from eq.1


Since we have sum=0 and n=243

Therefore, sum + (n%10) = 0 + (243%10) 

>> When we divide 243/10 we get the remainder as 3. That is what 243%10 is doing here.

              = 0 + (3)

                                    sum = 3

>> We have fetched the last digit from the given number. But now we want the number next to it.


5) Therefore, n = n//10

   >> When we perform a simple division on a given number--

        Say 243/10 = 24.3


   >> But here, we are doing floor division which helps us to exclude the digit after the decimal.

       i.e.; 243//10 = 24


   >> Therefore, n = n//10 is equivalent to n = 24.


6) Now since n = 24 the pointer will go to the while loop. It will check the condition.

        while n>0 

        i.e.; 24>0 

>> Since the condition fulfills it will again repeat the same procedure (from step 4 to 5)


7) Here, sum = 3+4

     = 7


    And, n = n//10

           = 2


* For more clarity look at the step-by-step cases--

  n = 243

 sum = 0 

 while (n>0):

sum = sum + (n%10)

    = 0 + (243%10=)3

            = 0 + 3

        sum = 3


        n = n//10

          = (243//10=)24

        n = 24


 while (n>0):

        sum = sum + (n%10)

    = 3 + (24%10=)4

            = 3 + 4

        sum = 7


        n = n//10

          = (24//10=)2

        n = 2



• while (n>0):

      sum = sum + (n%10)

    = 7 + (2%10=)2

            = 7 + 2

        sum = 9


        n = n//10

          = (2//10=)0

        n = 0


>> And here the loop will get terminated coz '0' is not greater than '0' as per our condition(viz while n>0).

>> So the pointer will come out of the loop and the print statement will execute. Executing the desired result.


* Our objective is to find the product of given digits i.e.; 2*4*3= 24

# product of given digits:--

n = int(input('Enter number:'))

product = 1

while n >1:

    product = product * (n%10)

    n = n//10

print('Product of digits=', product)


# Output : Enter number:243

                   Product of digits= 24


>> For finding the product of given digits, we just need to change the variable to product =1.

>> Coz here we need to multiple the digits and if we multiply the digits by 0 the result for every number will be 0.

* For simple calculator visit linkclick here

Comments

Popular posts from this blog

Machine Learning model for predicting 'Salary' of an Employee based on 'YearsofExperience'

“ Data really powers everything that we do .” — Jeff Weiner In the 21st century, Data is one of the most valuable entity anyone can have! There is loads-and-loads of data generated everyday. And to process this huge amount of data we need people who have expertise in it, who by the way are called as Data Engineers. Data Engineer collects the raw data, process it for further use; but we need an Analytic process which will automatically predict the data based on the previous one. And here's how 'Machine Learning' comes into the picture. "Machine Learning allows us to make highly accurate predictions based on the Historical Dataset which is used to train the machine learning model." Today let us look at a similar ML model to predict the 'Salary' of Employees based on 'YearsofExperience'. (P.S: I've provided pdf link at the very bottom of this page for clear understanding) 1) import the required modules 2) read the csv file 3) plot the graph 4) us...

Introduction to SQL

 Q.)  What is SQL ? Ans.) SQL(Structured Query Language) is a standardized language to communicate with the database.  With the help of it we can retrieve data from the database. SQL not only allows us to read the data but also allows us to write the data in the database.  Data in the database is stored in the form of tables. We can Select, Insert, Update, Delete, Create, Alter, Drop and can perform many more operations on the table. And these are called as SQL Statements. * SQL Statements are classified mainly into 4 categories :- 1) DML (Data Manipulation Language) 2) DDL (Data Definition Language) 3) DCL (Data Control Language) 4) TCL (Transaction Control Language) * Under DML we have :-(No Autocommit) 1. Select  2. Insert  3. Update  4. Delete  5. Merge    * Under DDL :-(Allows Autocommit) 1. Create 2. Alter  3. Drop  4. Truncate  5. Flashback * Under DCL :-(Allows Autocommit) 1. Grant  2. Revoke  * Under T...

Slicing in Python

  * Let's first understand how a slicing is been done-- Consider a string namely==>> string = 'python_developer!' If we print this then-- #  Output: python_developer! >> Now lets do some slicing here-- print (string[0:17:2]) >> Then the-- # Output: pto_eeoe! >> Lets see how it works-- So basically the print statement is in the form of  print(string[a:b:c]) >>  Now here   --           a: Starting position b: Ending position c: Steps taken >> If we take out length of the given string then-- print (len(string)) # Output: 17 * The total length of the given string is 17. Therefore in our given problem the string will be printed from 0 index to 16 index and would take 2 steps. >> Hence the output-- # Output: pto_eeoe! >> Now the print statement that we have used here is-- print (string[0:17:2]) >> We can also use-- print (string[:17:2]) >> It will give the same output-- ...