From f4b84b9a91e702e273d56aebcebd18486def40ba Mon Sep 17 00:00:00 2001 From: ralouekapoor06 Date: Sat, 12 Oct 2019 10:48:59 +0530 Subject: [PATCH] Update README.md --- Python/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Python/README.md b/Python/README.md index 2200eae..6cd2aa2 100644 --- a/Python/README.md +++ b/Python/README.md @@ -1,8 +1,8 @@ # Data Structure Implementation in Python -# A simple Python program for traversal of a linked list +## A simple Python program for traversal of a linked list -# Node class +## Node class class Node: # Function to initialise the node object @@ -11,7 +11,7 @@ class Node: self.next = None # Initialize next as null -# Linked List class contains a Node object +## Linked List class contains a Node object class LinkedList: # Function to initialize head @@ -27,7 +27,7 @@ class LinkedList: temp = temp.next -# Code execution starts here +## Code execution starts here if __name__=='__main__': # Start with the empty list