Login
Remember
Register
Ask a Question
Which statements will result in slice of tuple?
0
votes
asked
May 17, 2019
in
Python
by
Derya
Which statements will result in slice of tuple?
1)a_tuple[::-1] a_tuple[0] =[5]
2)a_tuple[:] a_tuple[::-1]
3)a_tuple[::2] a_tuple[:]
4)a_tuple[0] =[5] a_tuple[::2]
#python
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Feb 25, 2020
by
Jerry
a_tuple[::2] a_tuple[:] and
a_tuple[:] a_tuple[::-1]
...