Tag Archives: Python

Python Functions

Python Functions Functions plays an important role in simplifying the execution of a program. We can easily divide the work into different parts using functions. Main function will be in charge of calling each and every other function in the … Continue reading

Posted in Python | Tagged , , , , , , , , , , , , , , , | Leave a comment

Python Program to Find Factors of Numbers

I’m writing this post after a longggg gap of about 9th months. Today, we shall learn how to write a python program to find factors of given number. For this, we need to take  a number as input to the … Continue reading

Posted in Python | Tagged , , , , , | Leave a comment

Python program to generate Multiplication table

In this tutorial we shall learn about generating multiplication tables.For this program we are taking twoo integer values as input’s.One for which table to be printed and the other for limiting the table….For generating the table we need to consider … Continue reading

Posted in Python | Tagged , , , , , , , , , , | 1 Comment

Sum of digits of a number in Python

This gone be our second program in Python.We shall learn to write program to print the sum of digits of a given number.We have already seen the same program in C,C++,Java.Today we shall do the same in python. We all … Continue reading

Posted in Python | Tagged , , , , , , , , , , , , | Leave a comment