0 votes
in Python by

Read the below program code carefully, 

i = 2, 10  

j = 3, 5  

add = i + j  

print(add)   

What will be the output of this program?

a) (5, 10)

b) 20

c) (2, 10, 3, 5)

d) SyntaxError: invalid syntax

1 Answer

0 votes
by

c) (2, 10, 3, 5)

Related questions

0 votes
asked Sep 25, 2021 in Python by john ganales
0 votes
asked Sep 25, 2021 in Python by john ganales
...