Summary
Keywords
Full Transcript
Python Program to find Sum of Square of digits of a given Number - In Hindi - Tutorial #22 In this video, I have explained a program to find sum of square of digits of a given numbers. In this program we have to add square of all the individual digits of a number. For Example if the given number is 154 then we have to find the sum of square of its digits i.e. 1^2+5^2+4^2 = 42 will be the final sum square of digits. We will do the sum of square of digits program using While statement. While statement is used to execute a single statement or a block of statement n times till the condition is true. Every loop must contain three parts: 1. Initialization of counter variable. 2. Condition 3. Increment/Decrement of counter variable While loop or any loop will work fine if all the three parts are there in the programs. If any one is missing the loop will not run properly. Link to Previous Video: https://youtu.be/-PPkWv2D2K0 Link to Next Video: https://youtu.be/NVVXL0FqzKA Facebook Group: https://www.facebook.com/groups/2167344556716563/?ref=bookmarks Facebook Page: https://www.facebook.com/Codeitup-104310264625489/ Website: https://codeitup.in Tags Used: python tutorial python for beginners python loops tutorial while loop in python python looping program python programming exercise python tutorial in hindi python program to find sum of square of digits python looping questions python program to find sum of digits loops in python python tutorials python in urdu for loop python programs for loop with range nested for loop telusko python telusko learnings python harshit vashisth python program sum square #codeitup #whileloop #python
