Computer Science, asked by ritakumari4250, 6 months ago

Write a program in python enter book name, price and quantity and display with proper headings as

shown below:- [3]

BookName Price Quantity

Let Us C 173 15​

Answers

Answered by rahitesh1396
7

Answer:-

please find answer in Explanation

and do follow me.

Explanation:

book = input("Enter Book Name")

price= input("Enter Price of the book")

quantity=input("Enter Quantity of the book")

print("BookName/t Price/t Quantity")

print(book,\tprice,\t quantity)

Similar questions