push
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
def test_temperature():
|
||||
print("=== Garden Temperature Checker ===")
|
||||
user_input = input("Testing temperature: ")
|
||||
try:
|
||||
temperature = int(user_input)
|
||||
except ValueError:
|
||||
print(f"Error: {user_input} is not a valid number")
|
||||
return
|
||||
if temperature < 0:
|
||||
print(f"Error: {temperature}°C is too cold for plants (min 0°C)")
|
||||
if temperature > 40:
|
||||
print(f"Error: {temperature}°C is too hot for plants (min 0°C)")
|
||||
else:
|
||||
print(f"Temperature {temperature}°C is perfect for plants!")
|
||||
|
||||
|
||||
test_temperature()
|
||||
Reference in New Issue
Block a user