favorite_book = input("Enter the title of a favorite book: ") if favorite_book.istitle(): print(favorite_book, "- nice capitalization in that title!") else: print(favorite_book, "- consider capitalization throughout for book titles.")
if favorite_book.istitle(): print(favorite_book, "- nice capitalization in that title!") else: print(favorite_book, "- consider capitalization throughout for book titles.")