Computer Science, asked by jiteshsharma19, 2 months ago

Write a Python program to assign values in variable as: Bookid=145,

Bookname= Information Technology, Price=539​

Answers

Answered by sricharan123
1

Explanation:

bookid =145

Bookname = Information Technology

price = 539

print (" Book Id : " , bookid )

print ("Book Name:" , Bookname)

print (" price of the book:" ,price)

output...

Book Id : 145

Book Name: Information Technology

Price of the book: 539

Similar questions