Подскажите пожалуйста новичку, Почему Python ругается? points = int() def point_s(): if int(point) == 1: points += 5 elif int(point) == 2: points += 10 elif int...
а так все норм points = int() point = input('Введите номер ответа: ') if int(point) == 1: points += 5 elif int(point) == 2: points += 10 elif int(point) == 3: points +=...