+ 1
Slice in python
I don't know what is slice
2 Respostas
+ 4
In python, Slice is a way to extract a subset of elements from a list, tuple or string.
It can take 3 arguments:-
my_list[start_value: stop_value: step_value]
Here, start_value defines the index of first element to include(default is 0)
stop_value defines the index of last element
to include(default is end of the list)
step_value is the increament between elements(default is 1).
Example:-
my_list = [2,4,6,8,10]
print(my_list[1:4:1])
#Output:- [4,6,8]
You can use the same with tuple and string.
Use the python course to understand it perfectly
couse name Introduction to python, module name working with lists, lesson name Slicing.
+ 2
Tq