Python Dictionary

Introduction A Python Dictionary is a set of key-value pairs with the condition that all the keys within one dictionary should be unique. It is one of the built-in data types among four sequences (list, tuple, set) in Python. In the dictionary, the collection of items is ordered, and changeable. But in Python 3.6 and … Read more

Python Tuple and its Methods with Examples

A tuple is Python’s built-in immutable sequence that just looks like a list and uses parenthesis instead of square brackets. It supports indexing and only has two methods called: count( ) and index( ).   Accessing tuple items Accessing items in the tuple is similar to like in the list, just specify the index position … Read more

Python List Methods with Examples

List is one of the Python built-in data types that acts as a container for various items. Items can be string, int, float, boolean, nested list, set, and other data types. Python List is a mutable data type means after initializing it, we can change its items further also. But, we cannot change the items … Read more

Python Lists

Python lists are containers to store a set of values of any data type. In lists, values are in a comma-separated way between square brackets. Values can be of any data type such as either containing a single data type like string, int only, or mixed types like string, int, boolean, etc. together. Lists containing … Read more

Top 10 Features of Python

Python is an interpreted, high-level, general-purpose programming language, created by Guido van Rossum and first released in 1991. It is a multi-paradigm programming language that supports both object-oriented programming and structured programming, and many of its features support functional programming and aspect-oriented programming. There are lots of features of Python which are exist, but here … Read more

Everything You Need to Know About History of Python

As every programming language evolves as new ideas and technologies emerge, Python has also emerged to solve problems that current technology at that time hasn’t solved. Throughout the continuous effort of years by Python developers, Python language becomes more powerful and versatile. Let’s discuss the history of python and get the knowledge of how actually … Read more