What will be the output of the following code?
A=’8’
print(A*5+str(int(A)*2))
Answers
Answered by
0
Answer:
File "<string>", line 1
A=’8’
^
SyntaxError: invalid character in identifier
>
Answered by
0
Answer:
56
Explanation:
A='8'
print(A*5+str(A)*2))
(8*5+8*2)
(40+16)
56
Similar questions