IN PYTHON
"Copy" this given code and "paste" it on the python display to run the programme.
👇👇👇👇👇
number = int(input("Enter Number :"))
answer = [ ]
for i in range(2,int(number/2)+1):
if number % i ==0:
answer.append(i)
print("Number that can fully divide", number,"=" , answer)
Comments
Post a Comment