Python Tuple Tuples are used to store multiple items in a single variable. Tuple is one of 4 built...
Category - Python 3
Write a program to check whether a person is eligible to vote or not in Python
In this tutorial we are writing a Python Program to Check Eligibility for voting. To...
22 Different Star Pattern Programs in Python
Python Star Pattern Example : 1 ** ** * ** * * ** * * * * Python for i in range(0, 5): for j in...
Python Data Types with Examples
In this post, we will learn about the data type used in Python. Every programming language has this...
Find Sum Of Elements In A List in Python
In this article, we will learn How to find sum of elements in a list in Python. In this article, we...
Find the Greatest of Three Numbers Using the Function in Python
In this example, we will discuss the concept of the Python program:find the greatest of three...
Add Two Number Using Function in Python
In this tutorial, we will learn a simple concept of how to add two numbers using the function in...
Sort a Dictionary in Python
In this example, we will learn how to sort a dictionary in python. In the below example we will...
Simple Python Programs with Examples
The best way to learn Python is by practicing examples. The page contains examples on basic...
Filter the Positive Numbers from a list in Python
In this example, i’ll show you how to filter the positive numbers from a list. Python Code:...