Creating a description of a book. Design a function that takes a book and returns a string that describes the book. (You can describe what to include in a description.)
Note: there is a built-in function called str that takes an argument and returns that argument as a string. For example str(1) returns '1', and str(True)returns 'True'.