Write a program in python to find the product of two number x and y , where X=15 Y=150
【With Screenshot In app (pyroid 3) available in Play store or apple 】【Computer Class 6】
Attachments:

Answers
Answered by
4
Answer:
This is the Python program for the question.
I have attached the screen shot of the códe in Pyramid 3 app. Check the attachment.
x=15
y=150
p=x*y
print(f"Product of {x} and {y} is {p}")
Steps To Solve:
- Initialise x = 15 and y = 150.
- Multiply x and y and store the result in p.
- Display the value of p.
Attachments:


Answered by
1
Program:
x = 15
y = 150
p = x*y
print("The product is =",p)
Attachments:


Similar questions