Write a python program to assign three different
decimel number in 3 different in 3 variables.Add 3
numbers. Multiply each number with 5. Print results
with proper statements.
Answers
Answered by
1
Answer:
a=2.5
b=3.5
c=1.5
print(a+b+c)
print(a*5)
print(b*5)
print(c*5)
Explanation:
Similar questions