Есть вопросы?

Здесь Вы можете найти ответы на многие вопросы или задать свой вопрос!

Пишет неверный ответ что делать ? def print_friends_count(friends_count):
if friends_count == 0:
print('У тебя нет друзей')
elif friends_count == 1:
print('У тебя', friends_count, 'друг')
elif friends_count >= 2 and friends_count <= 4:
print('У тебя', friends_count, 'друга')
elif friends_count >= 5 and friends_count < 20:
print('У тебя', friends_count, 'друзей')
else:
print('Ого, сколько у тебя друзей! Целых', friends_count)
for friends_count in range(21):
print(friends_count)
print_friends_count(friends_count)

Другие вопросы по: Информатика

Знаешь правильный ответ?
Пишет неверный ответ что делать ? def print_friends_count(friends_count): if friends_count == 0: pr...

Популярные вопросы