Предмет:
ИнформатикаАвтор:
jamirleblancОтвет:
Листинг функции и демонстрация работы функции на фото.
def print_friends_count(friends_count: int):
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(f'Ого, сколько у тебя друзей! Целых {friends_count}')
____________________
обьяснение: эту функцию можна вызвать с разными аргументами, чтобы протестить ее, ну например:
print(print_friends_count(0))
print(print_friends_count(1))
print(print_friends_count(5))
print(print_friends_count(10))
print(print_friends_count(20))
Автор:
paddingtonoxyiДобавить свой ответ
Предмет:
МатематикаАвтор:
clarkeОтветов:
Смотреть
Предмет:
Английский языкАвтор:
castilloОтветов:
Смотреть