adplus-dvertising
frame-decoration

Question

Suppose i is 5 and j is 4, i + j is same as

a.

i.__add(j)

b.

i.__add__(j)

c.

i.__Add(j)

d.

i.__ADD(j)

Posted under Strings in Python Python

Answer: (b).i.__add__(j)

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Suppose i is 5 and j is 4, i + j is same as