Python. Ниже программа, она должна выводить на экран все делители переданного ей числа в одну строку, уровень 8-го класса, помогите плиз)
def delit(n):
for i in range(1,n+1):
if i % n == 0:
print(1,end=", ")
chislo = int(input())
delit(chislo)
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.