Задание:
Напишите цикл для запусков print_friends_count() c аргументами от 1 до 10.
Вот код который мне дали:
# объявите функцию здесь
def print_friends_count(friends_count):
if friends_count == 1:
print('У тебя 1 друг')
elif 2 <= friends_count <= 4:
print('У тебя ' + str(friends_count) + ' друга')
elif friends_count >= 5:
print('У тебя ' + str(friends_count) + ' друзей')
print_friends_count(5)
print_friends_count(4)
print_friends_count(50)
Но после объявления цикла у меня происходит проблема с вызовом функции