Computer Science, asked by SAGA06, 6 months ago

Find the errors in the following:
weather = 'Raining'
if weather = 'sunny':
Print("wear sunblock")
elif weather = 'snow':
print("going skiing”)
else weather=="Spring"
print(weather)​

Answers

Answered by jai696
3

\large\mathsf\color{pink}{Solution\: using\: python\: 3}

weather = "Raining"

if weather == "sunny":

print("wear sunblock")

elif weather == "snow":

print("going skiing")

elif weather == "Spring":

print("going for a picnic")

else:

print(weather)

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions