write a program to print and find cost of 7 books. cost of each book is Rs. 325.50
Answers
Answered by
0
Answer:
#Python3
#First Let's take input for how many books?
n = int(input("Enter number of Books: "))
print("Cost of Each book is Rs.325.50 and Total cost of your books is : "n*325.50)
Explanation:
Similar questions