Menu
Coddy logo textTech

Challenge #4

Lesson 13 of 14 in Coddy's Dictionary in Python course.

challenge icon

Challenge

Easy

Create a function named find_most_recent_book that finds the most recently published book in a library catalog. The function should take the library catalog as an input parameter and return the title of the book that is the most recently published.

Try it yourself

def find_most_recent_book(library_catalog):
    # Write code here

All lessons in Dictionary in Python