Sairam PenjarlaFollowDec 27, 2020·1 min readCount nodes in Circular linked listdef get_length(self): temp =self.head count = 0 if temp == None: return count while(temp): count +=1 temp = temp.next if temp==self.head: return count