Python-Programs | Find addition of two numbers | Learners Region

Опубликовано: 20 Март 2026
на канале: Learners Region
51
7

In this quick Python tutorial, you'll learn how to write a simple program to add two numbers. This is one of the most basic and essential exercises for anyone starting with Python programming. Perfect for students, beginners, and coding practice!
In this video we are going to see the very simple python program for finding the addition/sum of any two given numbers, we have used input() function to take input from user.

#Python #InputFunction #PythonForBeginners #PythonInput #LearnPython #InteractivePython #PythonClass11 #PythonTutorial #PythonCoding #InputInPython #TypeCastingPython #PythonBasics #permanandji #khansir #codewithharry #motivation #song #movie #movies #gaming #gameplay #games #fashiontrends #gaming #mrbeast #viral #viralvideo #viralshorts #viralshort #video #videos #videogames #ipl #iphone #freefire #cricket #cricketlover #cristianoronaldo #cricketnews #cricketshorts #vlog #vlogs #vlogger #vlogging #travel #travelvlog #traveling #bgmi #MrBeast #TrendingNow #YouTubeShorts #ViralShorts #YouTubeCreator #Shorts2025 #AITrends #ChatGPT5 #OpenAI #MakeMoneyOnline#mrbeast #TrendingNow #YouTubeShorts #ViralShorts #YouTubeCreator #Shorts2025 #AITrends #ChatGPT5 #OpenAI #MakeMoneyOnline
#AITools #ArtificialIntelligence #TechTrends #AIVideo #TextToVideo #ChatGPT5 #Midjourney #AIArt #TechReview #iPhone17 #Apple2025
#BGMI #BGMI2025 #GamingMontage #GTA6 #GTA6Leak #RockstarGames #Minecraft #MinecraftMods #Roblox #FreeFireLive #GamingLive
#DigitalMarketing #FreeCourse #LearnOnline #CareerGuide #DataAnalytics #PythonTutorial #LearnToCode #StudyWithMe #PomodoroStudy #TechJobs
#HomeWorkout #NoEquipment #FitnessAtHome #GlowUp #SelfCare #LifestyleVlog #WeightLossJourney #30DayChallenge #GymMotivation #WorkoutVibes
#FunnyReels #ComedyShorts #LOL2025 #TrendingReels #RomanticStatus #LoveShorts #BollywoodNews #CelebrityGossip #InstagramReels #ViralVideo
#AmazonFinds #BudgetGadgets #TechUnder500 #FlipkartSale #ShoppingHaul #OnlineDeals #MobileUnder20000 #BestSmartphone #TechReview
#SelfDiscipline #Motivation #BetterYou #MorningRoutine #5AMClub #DailyHabits #NoProcrastination #MindsetShift #SuccessTips
✅ What You’ll Learn:

How to take input from the user in Python

Converting input strings to integers or floats

Performing addition using + operator

Displaying the result using print()

Writing clean and readable code

📌 Timestamps:
00:00 – Introduction
00:30 – Taking user input
01:10 – Performing the addition
02:00 – Displaying the output
02:30 – Quick recap

💻 Code Sample:

python
Copy
Edit
Program to add two numbers in Python
num1 = float(input("Enter the first number: "))
num2 = float(input("Enter the second number: "))
sum = num1 + num2
print("The sum of the two numbers is:", sum)