Last active
November 30, 2017 06:18
-
-
Save azdafirmansyah/fe55b0797f181d229bff41d46e7bedb5 to your computer and use it in GitHub Desktop.
Divisors
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# exercise URL : http://www.practicepython.org/exercise/2014/02/26/04-divisors.html | |
''' | |
Create a program that asks the user for a number and then prints out a list of all the divisors of that number. | |
(If you don’t know what a divisor is, it is a number that divides evenly into another number. For example, 13 is a divisor of 26 because 26 / 13 has no remainder.) | |
''' | |
input_data = int(input("Input number : ")) | |
x = [] | |
for i in range(1,100): | |
if i % input_data == 0: | |
x.append(i) | |
print(x) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment