Create a Python program that simulates a basic library book management system. Your program should:
(a) Initialize a list called library_books with at least ten book titles. Each book consists of ID, Title, authors, and the
year it was published. The book attributes are represented by the storage location. The book ID is stored first,
followed by the title, authors, and the year it was published.
Example output, when you print the bookstore, should look like the following, but please ensure that you add
different books and at least ten entries:
[('001', 'Introduction to Chemistry', 'John Smith', 201), ('002',
*Software Engineering', 'Ian Sommerville', 200), ('003',
'Functional Programming', ('Jack Widman', 'Ahmad Yusif'),
2023)]
(b) Implement a function called display_books that takes the library_books list as a parameter and prints all the
books in the library. Ensure that for each book you print the ID, title, authors, and the year it was published.
The following figure shows an example output of the display_books function
Fig: 1