# Assign num_neg with the number of below-freezing Celsius tempatures in the list
tempatures = [30, 20 , 2, -5, -15, -8, -1, 0, 5, 35]
num_neg = 0
for temp in tempatures:
if temp < 0:
num_neg += 1
To embed this project on your website, copy the following code and paste it into your website's HTML: