celsius = -2
fahrenheit = ((9.0 / 5.0) * celsius) + 32
print(fahrenheit)
print(fahrenheit <= 30)
assert fahrenheit >= 30, "It's very cold" # if false
print("Temperature in Fahrenheit =", fahrenheit)
'''
run:
28.4
True
Traceback (most recent call last):
File "<string>", line 8, in <module>
AssertionError: It's very cold
'''