Learn practical skills, build real-world projects, and advance your career
class Node():
    pass
Node()
<__main__.Node at 0x7f660004d310>
node1 = Node()
node1
<__main__.Node at 0x7f6600041a60>
node2 = Node()