%html="
class Weather(Object):

	def __init__(self, conditions, temp):
		if type(conditions) == str:
			print('The weather at this location is ' + conditions + ' with a high of ' + str(temp))

location_1 = Weather('Sunny', 16)
location_2 = Weather('Raining', 25)
location_3 = Weather(0, 12)
location_4 = Weather('Dry', 12)
"%