Exercise 9 · Chapter: VariablesOptional+50 XP
Fix the Booleans
The boolean values below are stored as strings instead of real booleans. Fix them!
Expected output:
Is raining: True Is sunny: False
Hint: True and False should NOT have quotes around them.
Need a hint?
3 available · costs 5 XP each
python
is_raining = "True"
is_sunny = "False"
print("Is raining:", is_raining)
print("Is sunny:", is_sunny)
Output
Run your code to see the output here.