Exerpad
🔥0
0 XP
Lv.1 Beginner
Log In

Fix the Booleans

The boolean values below are stored as strings instead of real booleans. Fix them!

Expected output:

text
Is raining: True
Is sunny: False

Hint: True and False should NOT have quotes around them.

💡 Hints

?Hint 1
🔒Hint 2
🔒Hint 3
python
is_raining = "True"
is_sunny = "False"

print("Is raining:", is_raining)
print("Is sunny:", is_sunny)