#!/usr/bin/env python2.7 #node object class Node: def __init__(self, data): self.data = data self.next = None