Find out the error(s) in the following code fragments
Teparature=90
Print temparature
a=30
b=a+b
Print(a and b)
Answers
Answered by
2
Answer:
The error here is in the variable b because there is no variable called 'b', so you can't add variable 'a' with variable 'b'
Answered by
1
Answer:
temperature=90degre Celcius
print temperature
30+90
120 is answer
Similar questions