Wap in python to find product of 26,53,14
Answers
Answered by
0
Answer:
#bal
print(265314/2)
Answered by
3
Below is the program in python for the above question.
Explanation:
First program: print(26*53*14) # directly print the product of 26,53 and 14.
OR
Second Program:
a=26 #assign the 26 value on a variable.
b=53 #assign the 53 value on b variable.
c=14 #assign the 14 value on c variable.
print(a*b*c) // print the product of variable a,b,c.
Output:
- Both programs will produce the 26, 53 and 14 and give the result 19292.
Code Explanation:
- The first program direct multiply the 26,53 and 14 and prints the result.
- The second program firstly assigns the value 26 into a variable, 53 into b variable and 14 into c variable and gives output after multiplying the variable a, b and c which gives the output of the product of 26,53 and 14.
Learn More:
- Python : https://brainly.in/question/8153418
Similar questions