Hello I have recently started learning python3 and in the course I'm doing it asks me to do a if-else statement with bool variable.
I have written my code and checked off all the criteria for the code need but it keeps saying I should define a Boolean variable and I can't for the life of me figure out what it wants me to do.
Here is my code :
rain = bool(input('is it raining outside?: ').lower())
if rain == "Yes":
print("I'm going to dance in the rain!")
else:
print ("I'm going to dance in the sun!")