0

Помогите разобраться

Не могу понять почему пишет None в результате выполнение кода, подскажите пожалуйста как исправить ошибку https://code.sololearn.com/c9faiKMu8vnl/?ref=app

17th Oct 2021, 5:02 PM
Михаил Васильев
1 Réponse
+ 1
You don't need to use the print function again. just call the function. Remove last print function a=4 b=2 def chisla(i, o): ostatok=i%o if ostatok==1: print("Не цельное") else: print("Цельное") chisla(a, b)
17th Oct 2021, 5:06 PM
SAN
SAN - avatar