Python support
Please can someone familiar with Python help with this: The squirrels in Palo Alto spend most of the day playing. In particular, they play if the temperature is between 60 and 90 (inclusive). Unless it is summer, then the upper limit is 100 instead of 90. Given an int temperature and a boolean 'is_summer', return True if the squirrels play and False otherwise The above is a question that basically requires me to create a function that takes two arguments: temperature in value(int) and a Boolean as the other. The function is expected to return False Only when the integer value falls outside the range 60-90 and the Boolean argument is False. However, if the Boolean value is true then the upper limit of the range is extended to 100. Every other case should return false. Please I need support on this cause I'm relatively new to programming and have tried to resolve the problem but failed. Anybody?