''' weather.py DS2000 Spring 2022 Starter code for class on 4/15... Starting out a Weather ojbect. It has lat/long attributes, so we're talking about the weather at a specific location. What we want to figure out is the temperature at that specific location. Since we want to figure out the current temp, using a CSV file would be pretty silly! It'd never get updated quickly enough, and it would have to be huge to cover every lat/long location in the US. So what's a better fit, if available? An API! In class we'll add in the part still needed below, getting the current temp at this location by calling an API function. ''' class Weather: def __init__(self, lat, long): ''' create a weather object with the given latitude and longitude''' self.lat = lat self.long = long