PYTHON Tutorial Guide

Python Practice Program for String Operations

In previous articles, we have learned about string operations in Python. In this article, let us create some basic Python programs on Strings. We will perform some basic operations using the string in...

How to find words which are even or odd from a sentence in Python?

This is another article in the series of Python Practice Programs. In this article, we will write a program to get if the length of a word in a sentence is even or odd...

How to Take-Two Input from the user and find the common character in Python?

In this article, we will take 2 inputs from the user and find the common character in both the string. This is another article in the series of Python Practice Programs on String Operation...

How to remove the duplicate element from a list in Python?

This is another article in the series of Python Practice Programs in Python Lists. In this article, we will see how to remove the duplicate element from the list and store it in a sperate list...

How to reverse the List in Python?

In previous articles related to lists, we have learned basic concepts of the list in python. We have also seen some of the operations that we can perform on Python lists. There are many logics that...

Python Practice Program using Function

In previous articles, we have learned the basic concepts of Python Functions. In this article, let us do some practice programs on Python functions. These are some basic programs to clear the concept...

Python Conditional Programs for Beginners.

In the previous article, we have learned about the concept of conditions and conditional programming in Python. In this article, we will use those concepts and write some Python programs using those...

Python Loop Program for Practice

In previous articles, we have learned about Loops in Python. In this article, we will write some Python programs using loops. We will use the concept we have learned in the previous article about...

Python Practice Program for List

In our previous article, we have learned about the basic concept of List in python. we have learned about lots of operations we can do with List. In this article, let us use the concepts we have...

Python Basic Programming Practice for Beginners.

In our previous articles, we have learned about the basic programming concepts of Python. In this article, let us use those concepts to write some basic Python programs. This will gives a good...

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...

How to check if a number is Palindrome number in Python?

In the previous article, we have seen how to reverse a number. In this article, we will check if a number is a Palindrome or not. We will take inputs from the user and will analyze it for its...

How to write Python program to reverse a number using For Loop?

In this article, we will use len() function and For Loop of Python to reverse a number. We will take input from the user and then will print the reverse of that number. For example, let us suppose the...

Python Program to Print Table of 2 and others

In the previous article, we have seen how we can concatenate two strings and how we can add two numeric numbers. In this article, we will see how we can print a table of 2 first and then how you can...

How to add two numbers in Python?

In this artilcle, we will see a very simple program in Python. We will do the addition of two number in python. Simple right? Yes and even simpler to write the code in Python. Example 1: With fixed...

What is Range Function in Python? What does it do?

In this article, we will see what is range function and what does it do? We hear a lot about Range() function in Python, basically at the time of using a loop. Range function generates the list of...

How to use variables In Python?

Python is very intelligent, in python, there is no need to define the data type of variable, simply you can assign the value to a variable by value it will recognize its data type. Example: ...

Writing your first program in Python

Now since we have installed Python on Windows machine, Now it is time to write our first Python Program. In this article, we will use Command Prompt and will print Hello World in Python. To do that...

How to install Python on Windows

Python is becoming a popular language among web developers nowadays due to various reasons. Python is an interpreted language. Python is free, anyone can use programming language. Python’s...