Computer Science, asked by manyalreddy720, 7 months ago

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 yesiamin6
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