Computer Science, asked by satavisha44, 6 months ago

What will be the output of the following code?

A=’8’

print(A*5+str(int(A)*2))​

Answers

Answered by DP00
0

Answer:

File "<string>", line 1

A=’8’

^

SyntaxError: invalid character in identifier

>

Answered by MayurB1234
0

Answer:

56

Explanation:

A='8'

print(A*5+str(A)*2))

(8*5+8*2)

(40+16)

56

Similar questions