datetime Module in Python

datetime Module in Python Python provides a module named datetime to work on dates and times in the script if

Read more

Break Statement in Python

Break Statement in Python Break statement in Python is used to terminate the loop when the condition associated with the

Read more

While Loop in Python

While Loop in Python While loop is one of the two major loops available in Python which are for loop

Read more

If Else in Python

If Else in Python If else in Python are a set of control statements that literally control flow of code.

Read more

Comments in Python Code

Comments in Python Code Comments in Python code are the lines of code which are not interpreted by the python

Read more

Types of Linked List

Types of Linked List Types of linked list Singly linked lists Doubly linked lists Circular linked lists 1. Singly Linked

Read more

Linked list Data Structure

Linked list Data Structure The linked list data structure ia a collection of nodes and each node is having one

Read more

Deque Data Structure

Deque Data Structure Deque data structure is an abstract data type similar to an simple queue, it allows you to

Read more