In this video, we’ll learn how to write a simple Python program to multiply any 5 numbers. 🚀
Perfect for beginners who are just starting their Python journey!
We’ll go step-by-step — from taking input to displaying the result in an easy way.
📚 Topics Covered:
Python basic input/output
Multiplication of numbers
Simple logic for beginners
👨💻 Example Code:
Program to multiply 5 numbers
a = int(input("Enter first number: "))
b = int(input("Enter second number: "))
c = int(input("Enter third number: "))
d = int(input("Enter fourth number: "))
e = int(input("Enter fifth number: "))
result = a * b * c * d * e
print("Multiplication of 5 numbers =", result)
👍 Don’t forget to Like, Share & Subscribe for more easy Python programs!
#Python #CodingForBeginners #PythonPrograms #LearnCoding #Shorts #StudyWithMe