Login
Remember
Register
Ask a Question
Is this code valid in Python?
0
votes
asked
Aug 22, 2022
in
Python
by
Robindeniel
Is this code valid in Python?
select the correct answer from below options
>>> m=6,7,8,9
>>> m
1) No, many values will unpack
2) Yes, (6,7,8,9) will be printed
3) Yes, 6 will be printed
4) Yes, [6,7,8,9] will be printed
python
code
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 22, 2022
by
Robindeniel
2) Yes, (6,7,8,9) will be printed
...