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...
Lazy programming Series – Variables, Data Types & Typecasting | Practical Code
In Python, variables are used to store data values. Each variable has a data type, which defines the type of...
Lazy programming Series – Comments, Escape Sequence and Print statement | Simple Calculator
In Python, comments, escape sequences, and the print statement are important elements for writing clear and functional code. Comments: Comments...
Lazy programming Series – Module and Simple Program
Modules: In Python, a module is a file containing Python definitions and statements. The file name is the module name...
Lazy programming Series – Introduction of Python
Python is a high-level, versatile, and interpreted programming language that is widely used for various purposes, including web development, data...