(Python) In a weather station, there is a sensor that measures
the temperature three times a
day (in Celsius). Write a program that asks the user to input three
numbers, corresponding to the
sensor's three readings for a particular day. Then, print the
minimum, maximum and average value
of the three numbers.
Note: If one or two inputs are either less than -70, or greater
than +50 degrees, you should ignore
those one or two inputs, and calculate the minimum,...