Basic_Tutorials

Dictionary Comprehension in Python

Introduction As like the list comprehension method, dictionary comprehension is one of the exclusive features of python languag…

List comprehension in python

Introduction We all probably know about the versatility of the python language. Writing code in python is very easy and refined.…

File Handling in Python with various examples

Introduction Like other programming languages, Python also provides a feature for working with text and binary files. This is mu…

Learn about Python Set

Introduction Python Set is an unordered(It is not guaranteed, in which order the items of a set will appear each time) collecti…

Learn about Python Tuple

Introduction Python tuple is almost similar to the Python Lists . It's an ordered collection of comma-separated items betwee…

Learn about Python Dictionary

Introduction Python dictionary(in short ' dict ') is a collection of arbitrary data. Items are stored in the form of key…

Learn about Python Lists

Introduction Python list is a dynamic size array, and here it's not mandatory to declare all the values homogeneous. It can …

Learn about Python If Else

Introduction In real life, we have to make decisions to perform a particular task. Subsequent tasks are completed depending on m…

Learn about Python Strings

Introduction A string is a sequence of characters and is considered a data type. It can also contain spaces, numbers, special ch…

Learn about Python Variables

Introduction Variables are used to store different types of values. In Python, you don't have to specify the type of a varia…

Learn about Python Input Function

In python, we use the input() function to give inputs to a program. It's a built-in function. By default it takes string v…

Learn about Python Print Function

Introduction Printing something in Python is pretty straightforward. There is  a built-in function called 'print' for it…

That is All