0 votes
in Python by
Read the below program code carefully,

i = 2  

j = 3, 5  

add = i + j  

print(add)   

What will be the output of this program?

a) 5, 5

b) 5

c) (2 , 3 , 5)

d) TypeError

1 Answer

0 votes
by

d) TypeError

...