Write a function, get_node_value, that takes in the head of a linked list and an index. The function should return the value of the linked list at the specified index.
If there is no node at the given index, then return None.
a = Node("a")b = Node("b")c = Node("c")d = Node("d")a.next = bb.next = cc.next = d# a -> b -> c -> dget_node_value(a, 2) # 'c'
a = Node("a")b = Node("b")c = Node("c")d = Node("d")a.next = bb.next = cc.next = d# a -> b -> c -> dget_node_value(a, 3) # 'd'
a = Node("a")b = Node("b")c = Node("c")d = Node("d")a.next = bb.next = cc.next = d# a -> b -> c -> dget_node_value(a, 7) # None
node1 = Node("banana")node2 = Node("mango")node1.next = node2# banana -> mangoget_node_value(node1, 0) # 'banana'
node1 = Node("banana")node2 = Node("mango")node1.next = node2# banana -> mangoget_node_value(node1, 1) # 'mango'