Computer Science, asked by vedank048, 7 months ago

Find the errors in the code given and correct the code:
weather='raining'
if weather='sunny':
print(''wear sunblock'')
elif weather='snow'
print(''going skiing'')
else:
print(weather)

Answers

Answered by sharmalakshay349
10

Answer:

nothing is incorrect all are correct

Answered by kashish0206
21

Answer:

weather='raining'

if weather='sunny':

print("wear sunblock")

elif weather='snow':

print("going skiing")

else:

print(weather)

Similar questions