Boolean expression Python
Python Boolean expression is an expression that evaluates to produce a result which is a Boolean value. An if statement uses the equal operator ==… Read More »Boolean expression Python
Python Boolean expression is an expression that evaluates to produce a result which is a Boolean value. An if statement uses the equal operator ==… Read More »Boolean expression Python
Python None is a special object of the NoneType class. It is used to define a null variable or an object. Syntax of None as… Read More »None in Python
Python three dots (Ellipsis) means the object seems inconspicuous. It is a singleton Object i.e., provides easy access to single instances. Python three dots or… Read More »Python three dots
Python min() function returns the lowest value in an iterable object or finds the smallest item between two or more parameters. Find the smallest item… Read More »Python min() function | Basic
Python max() function returns the item with the highest value in an iterable object or largest of two or more arguments. Find the largest item… Read More »Python max() function | Basic
The title() method is used to convert the first character in every word of a given sentence in Python. Actually, this method returns a string… Read More »Python title function | Uppercase first character of the word
Python List is the built-in data type used to store multiple items in a single variable. Python has 3 more data types Tuple, Set, and… Read More »What is list in Python | Basics
Tuples are store multiple items in a single variable in Python. A tuple is an immutable object meaning that we cannot change, add or remove… Read More »What is a tuple in Python | Basics
Making a dictionary is as simple as just do place elements inside curly braces {} separated by commas. An element has a key and a… Read More »Make Dictionary Python | Basics
Use a dictionary data type when the data has a unique reference that can be associated with the value in Python. A dictionary is a… Read More »When to use a dictionary in Python | Basics