Program to find the sum of three numbers/Easy Python Programs For Beginners Pt-3

Опубликовано: 10 Июль 2026
на канале: Happy Coder
41
like

Beep... Beep...
Code:-
a=float(input('Enter 1st Number: '))
b=float(input('Enter 2nd Number: '))
c=float(input('Enter 3rd Number: '))

d=a+b+c

print('Sum of all three numbers is',d)

0:00-Question
0:07-Solution/Code
1:16- Output