Python Program #1 - Find Sum of Numbers Entered by User

preview_player
Показать описание
Python Program #1 - Find Sum of Numbers Entered by User
In this video by Programming for beginners we will see Python Program to Find Sum of Numbers Entered by User, in Python for beginners series.
Python programming language and program is very easy to learn for students and professionals.

Example:
Numbers entered by user = 10 20
Sum of numbers entered by user = 30

Enter the count of numbers = 5
Numbers entered by user = 10 20 30 40 50
Sum of numbers entered by user = 150

==========

Python Programs for Beginners Playlist:

Python Tutorial for Beginners Playlist:

Java Tutorial for Beginners Playlist:

All Java Programs Playlist:

Python is a computer programming language often used to build websites and software, automate tasks, and conduct data analysis. Python is a general-purpose language, meaning it can be used to create a variety of different programs and isn't specialized for any specific problems.
It is very important for students and professionals to learn python programming language that will help you to achieve many tasks easily and to build softwares.

YouTube Gears:

#PythonTutorial #PythonProgram #PythonForBeginners #Programming #PythonTutorialForBeginners

============================
LIKE | SHARE | COMMENT | SUBSCRIBE

Thanks for watching :)
Рекомендации по теме
Комментарии
Автор

x=input("enter the numbers here seperate each one by, :-")
y=[int(i) for i in x.split(", ")]
sum=0
for i in range(0, len(y)):
v=y[i]*1
sum=sum+v
print(sum)

jeetghosh