Summary
Keywords
Full Transcript
Python Program to find Sum of First N Even Numbers - In Hindi - Tutorial#20 In this video, I have explained a program to find sum of first N even numbers. This is a basic program to find program sum of first N even numbers. While loop is the basic looping system in Python Programming. Natural Numbers start with 1 and it goes up to N. We have to print the sum of first N even numbers(given by the user). Looping/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/DdpjSNH27pA Link to Next Video: https://youtu.be/-PPkWv2D2K0 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,programming python tutorial python tutorial for beginners in hindi 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 even numbers python programs carryminati telusko python harshit vashisht python telusko program print sum first even number even number Python Program to find Sum of First N Even Numbers #codeitup #whileloop #python
