Sunday, 3 March 2019

Find Factors of Numbers in Python

# Python Program to find the factors of a number
# define a function
def print_factors(x):
# This function takes a number and prints the factors
print("The factors of",x,"are:")
for i in range(1, x + 1):
if x % i == 0:
print(i)
# change this value for a different result.
num = 320
# uncomment the following line to take input from the user
#num = int(input("Enter a number: "))
print_factors(num)


Output:
The factors of 320 are:
1
2
4
5
8
10
16
20
32
40
64
80
160
320

Related Posts:

  • Max Consecutive Ones | Python Check the problem statement here: Max Consecutive Ones https://leetcode.com/problems/max-con... Python for beginners: https://www.youtube.com/watch?… Read More
  • Plus One | Python Python for beginners: https://www.youtube.com/watch?v=egq7Z... Code: class Solution:     def plusOne(self, digits: List[int]) … Read More
  • Majority Element | Python Check the problem statement here: https://leetcode.com/problems/majorit... Python for beginners: https://www.youtube.com/watch?v=egq7Z... Code: c… Read More
  • The continue Statement | Python For more detail explanation, check the below link: https://www.tutorialspoint.com/python... Python for beginners: https://www.youtube.com/watch?v=eg… Read More
  • eval | Python Explore more about eval here: https://docs.python.org/3/library/fun... https://towardsdatascience.com/python... To convert the string into a numeri… Read More

0 Comments:

Post a Comment

Popular Posts

Categories

100 Python Programs for Beginner (97) AI (39) Android (24) AngularJS (1) Api (2) Assembly Language (2) aws (17) Azure (7) BI (10) book (4) Books (197) C (77) C# (12) C++ (83) Course (67) Coursera (251) Cybersecurity (25) Data Analysis (3) Data Analytics (3) data management (11) Data Science (149) Data Strucures (8) Deep Learning (21) Django (16) Downloads (3) edx (2) Engineering (14) Euron (29) Events (6) Excel (13) Factorial (1) Finance (6) flask (3) flutter (1) FPL (17) Generative AI (11) Google (36) Hadoop (3) HTML Quiz (1) HTML&CSS (47) IBM (30) IoT (1) IS (25) Java (93) Java quiz (1) Leet Code (4) Machine Learning (85) Meta (22) MICHIGAN (5) microsoft (4) Nvidia (4) Pandas (4) PHP (20) Projects (29) pyth (1) Python (1047) Python Coding Challenge (456) Python Quiz (122) Python Tips (5) Questions (2) R (70) React (6) Scripting (3) security (3) Selenium Webdriver (4) Software (17) SQL (42) UX Research (1) web application (8) Web development (4) web scraping (2)

Followers

Python Coding for Kids ( Free Demo for Everyone)