Practice: If Else

Time to practice if-else and write a code on it

💡 This exercise will put everything into action you have learned so far about if-else.

💡 Write a code below

Task: Write a program to check if it will rain or snow.

Create a variable named weather. Set its value to either "rain" or "snow".

If it's "rain", print "Rain rain go away. Come again another day".

If it's "snow", print "Let it snow. Let it snowwwww".



Type code below in textbox

Coding box below - Click in box and type text here! ⬇️ ⬇️

Output:

                    
Weather Animation
Weather GIF
Click to Reveal Solution
weather = "rain"
if weather == "rain":
    print("Rain rain go away. Come again another day")
else:
    print("Let it snow. Let it snowwwww")