Identify the errors in the statement and rewrite the correct code: (6M)
1. .>>> a1 = 10
>>> b1 = 20
>>> a1 +b1 =c
>>>Print (c)
Answers
Answered by
0
Answer:
a1+b1=c is the error in the code because we cannot assign value to operator
Explanation:
>>> a1 = 10
>>> b1 = 20
>>>c=a1+b1
>>>print(c)
And the output is 30
HOPE IT HELPS YOU. DO FOLLOW FOR MORE PROGRAMS
MARK AS BRAINLIEST
Similar questions