Blog

python tutorials and learn python

Created with Sketch.

JavaScript program to calculate the area of a triangle given its base and height

JavaScript program to calculate the area of a triangle given its base and height

JavaScript program to find the square root of a number:

JavaScript program to find the square root of a number:

JavaScript program to add two numbers:

JavaScript program to add two numbers:

JavaScript code to print “Hello World”

JavaScript code to print “Hello World”

Python program that inserts a new node at the end of a circular linked list:

Python program that inserts a new node at the end of a circular linked list: In this example, we first define a Node class with a constructor that initializes the data and next properties. The CircularLinkedList class is implemented using the Node class. The CircularLinkedList class has an append method that adds new data to…
Read more

Python program that inserts a new node at the beginning of a circular linked list:

Python program that inserts a new node at the beginning of a circular linked list:

Python program that finds the maximum and minimum value node from a circular linked list:

Python program that finds the maximum and minimum value node from a circular linked list: In this example, we first define a Node class with a constructor that initializes the data and next properties. The CircularLinkedList class is implemented using the Node class. The CircularLinkedList class has an append method that adds new data to…
Read more

Python program that deletes a node from the middle of a circular linked list, given a specific value:

Python program that deletes a node from the middle of a circular linked list, given a specific value: In this example, we first define a Node class with a constructor that initializes the data and next properties. The CircularLinkedList class is implemented using the Node class. The CircularLinkedList class has an append method that adds…
Read more

Python program that deletes a node from the end of a circular linked list:

Python program that deletes a node from the end of a circular linked list: In this example, we first define a Node class with a constructor that initializes the data and next properties. The CircularLinkedList class is implemented using the Node class. The CircularLinkedList class has an append method that adds new data to the…
Read more

Python program that deletes a node from the beginning of a circular linked list:

Python program that deletes a node from the beginning of a circular linked list: In this example, we first define a Node class with a constructor that initializes the data and next properties. The CircularLinkedList class is implemented using the Node class. The CircularLinkedList class has an append method that adds new data to the…
Read more