Node class

A linked list contains a series of elements--nodes--connected by pointers. Each node object consists of two pieces of information--two instance variables:

Write a Node class that includes a constructor, and four methods that will allow us to interact with those variables: two "getters" and two "setters".

The constructor for a new Node object takes an initial piece of data as a parameter, but that there is no initial next that we point to. Make sure to set the initial pointer to None explicitly.