Lazy Programming Series – Operators in Python
In Python, operators are special symbols or keywords that are used to perform operations on variables and values. Here’s a...
Lazy Programming Series – Challenge – 2
Challenge -2: Problem Statement: Guess the Age Game: Your tasked is to create a simple game to guess a specific...
Lazy Programming Series – Break and Continue Statement
In Python, break and continue are flow control statements used within loops (such as for and while loops) to alter...
Lazy Programming Series – While Loop
In Python, a while loop is a control flow statement that allows you to execute a block of code repeatedly...
Lazy Programming Series – For Loop
A for loop is used to iterate over a sequence (such as a list, tuple, string, or range) or any...
Lazy Programming Series – If-else & elif
In Python, you can use if, else, and elif (short for “else if”) statements to control the flow of your...
Lazy Programming Series – Set
In Python, a set is an unordered collection of unique elements. Sets are useful when you want to store multiple...
Lazy Programming Series – Challenge -1
Challenge-1: Description: Create a database & take input of student name from the user and in response user gets the...
Lazy Programming Series – List & Dictionary
In Python, a list is a versatile and widely used data structure that allows you to store and manipulate a...
Lazy programming Series – String Slicing
String Slicing and Other Functions in Python: String slicing is a powerful feature in Python that allows you to extract...