All Divisors In Python

Dear Sciaku Learner you are not logged in or not enrolled in this course.

Please Click on login or enroll now button.

If you have any query feel free to chat us!

Happy Coding! Happy Learning!

Lecture 55:-  All Divisors In Python

To find all the divisors of a given positive integer in Python, you can create a function that iterates through the numbers from 1 to the given integer and checks if they divide the number without leaving a remainder. Here's one way to find all divisors:

pythonCopy code

def find_divisors(num):    divisors = []    for i in range(1, num + 1):        if num % i == 0:            divisors.append(i)    return divisors # Example usage: num_to_check = 12 all_divisors = find_divisors(num_to_check) print(f"All divisors of {num_to_check}: {all_divisors}")

Output:

lessCopy code

All divisors of 12: [1, 2, 3, 4, 6, 12]

In this example, the find_divisors() function takes a positive integer num as input and initializes an empty list divisors to store the divisors. The function then iterates from 1 to num using the range() function. For each number i, it checks if num is divisible by i without leaving a remainder (num % i == 0). If the condition is true, i is a divisor of num, and it is added to the divisors list.

When you call the find_divisors() function with num_to_check = 12, it will find all divisors of 12, which are 1, 2, 3, 4, 6, and 12, and print the result.

Keep in mind that the function also considers 1 and the number itself as divisors since every positive integer is divisible by 1 and itself. If you want to exclude 1 and the number itself from the list of divisors, you can modify the range in the loop to range(2, num) instead of range(1, num + 1).

6. Loops

0 Comments

Start the conversation!

Be the first to share your thoughts

Frequently Asked Questions About Sciaku Courses & Services

Quick answers to common questions about our courses, quizzes, and learning platform

Didn't find what you're looking for?

help_center Contact Support