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
10
Answer:
nothing is incorrect all are correct
Answered by
21
Answer:
weather='raining'
if weather='sunny':
print("wear sunblock")
elif weather='snow':
print("going skiing")
else:
print(weather)
Similar questions