Computer Science, asked by jinay946, 7 months ago

Find the error in the following code? Also write the corrected code: 1
a=’10’
b=a+10
print( a ; b) ​

Answers

Answered by jkovidh2008
0

Answer:

"a"=10

"b"=a+10

print("a","b")

Explanation:

as both a and be are variables they have to be in quotes and if we print a and br without the double quotes it will print only ab and not the values in it

Similar questions