Find the error in the following code? Also write the corrected code: 1
a=’10’
b=a+10
print( a ; b)
Answers
Answered by
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