Login
Remember
Register
Ask a Question
Read the below program code carefully,
0
votes
asked
Sep 29, 2021
in
Python
by
john ganales
Read the below program code carefully,
i = {4, 5, 6}
i.update({2, 3, 4})
print(i)
What will be the output of this program?
a) 2 3 4 4 5 6
b) 2 3 4 5 6
c) 4 5 6 2 3 4
d) Error, duplicate element presents in list
python-list
Python-questions-answers
Please
log in
or
register
to answer this question.
0
Answers
...