PYTHON Tutorial Guide

Function in Python

A function is very important in any programming language. The function will make your code more flexible and make it more readable. In this article, we will see what is Function in Python and how can...

What is SET in Python

Earlier we learned about the List, today we will learn about the set. In Python, a Set is a collection of unordered data or we can say the set is a collection of heterogeneous data. Inserted data are...

What is List in Python?

In this article we will see what is list in Python and how do we use Lists in Python. In Python list is the sequence of data, this sequence can have the same data type or different data type, here...

How to use For Loop in Python

In previous articles, we had seen conditional statements, how to use them and some python programs based on conditional statements. Among the 2 loops available we will see python for loop in this...

What is the Career Scope of Python Developer?

Python developers have a very good careerr scope and future, nowadays python is being used everywhere. If you compare the salary range, python developer is paid a good salary, generally on higher...

Python Programs using if else conditional statements

In the previous article, we have seen how can write if, if-else, and nested if conditional statements in python. In this article let us use the conditional statements to write some Python programs...

How to write If Else statements in Python?

In previous articles, we have seen how to write your first Python program, using Range() function, Len() function, for loops and other programs. In this article, we will see how we can write a...

What are reserved words in Python

There are some reserved words in Python, you cannot use them as a variable or constant. If it is being used as the class name, variable name, constant of function name it will throw an error. So avoid...

How to Create Multiline Comment in Python?

Python supports a single line and multi-line comments. Based on different situations both commenting types can be used. For single-line commenting, # is used to comment the line in python. Where...

Python syntax and rules

Python syntax can be executed directly in the Command-Line or by creating a python file using the .py extension and running it in the Command-Line. In this article, we will see some important rules...