Write a class LinkedList
Write a class LinkedList that holds a linked list of values. Your class should be in a source file named linked_list.py, and should support the following operations: LinkedList(list) - create a LinkedList that initially holds the values in the given Python list l.to_list() - return a Python list containing the values in this LinkedList l.len() - return the number of nodes in a LinkedList l.get(n) - return the value in the nth node, where nodes are numbered from 0. You may assume that 0 <= n < l.len(). l.has(x) - true if the list includes the value x l.delete(x) - delete the first occurrence (if any) of the value x Important: You may not use Python lists anywhere, except in the initializer and the to_list() method. Your LinkedList class may not store a Python list in any attribute. Also, generators are not allowed in this assignment. You do not need to read any input or write any output; simply submit a file linked_list.py containing the class described above. >>> l = LinkedList([2, 7, 4, 9, 18, 19, 22]) >>