Write a Python Program to Find Sum of The First n Positive Integers [Using While Loop]

preview_player
Показать описание
Hello Programmers, Welcome to my channel.

In this video you will learn about how to Write a Python Program to Find Sum of The First n Positive Integers [Using While Loop]

Python Scripts
======================

Python Functions Solved
==========================

Python Programs Solved
============================

Code
=============================
n = int(input("Enter Value of n : "))

total = 0
index = 0
while index replace_this_with_less_than_symbol= n:
total = total + index
index = index + 1

print("Sum of The First n Positive Integers : ", total)

Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners
Рекомендации по теме