Упражнение на Python: нарезать кортеж
Кортеж Python: Упражнение 13 с решением
Напишите программу на Python для нарезки кортежа.
Пример решения : -
Код Python:
#create a tuple
tuplex = (2, 4, 3, 5, 4, 6, 7, 8, 6, 1)
#used tuple[start:stop] the start index is inclusive and the stop index
slice = tuplex[3:5]
#is exclusive
print(_slice)
#if the start index isn't defined, is taken from the beg inning of the tuple
_slice = tuplex[:6]
print(_slice)
#if the end index isn't defined, is taken until the end of the tuple
_slice = tuplex[5:]
print(_slice)
#if neither is defined, returns the full tuple
_slice = tuplex[:]
print(_slice)
#The indexes can be defined with negative values
_slice = tuplex[-8:-4]
print(_slice)
#create another tuple
tuplex = tuple("HELLO WORLD")
print(tuplex)
#step specify an increment between the elements to cut of the tuple
#tuple[start:stop:step]
_slice = tuplex[2:9:2]
print(_slice)
#returns a tuple with a jump every 3 items
_slice = tuplex[::4]
print(_slice)
#when step is negative the jump is made back
_slice = tuplex[9:2:-4]
print(_slice)
Пример вывода:
(5, 4) (2, 4, 3, 5, 4, 6) (6, 7, 8, 6, 1) (2, 4, 3, 5, 4, 6, 7, 8, 6, 1) (3, 5, 4, 6) ('ПРИВЕТ, МИР') («L», «O», «W», «R») («Н», «О», «R») ('L', '')
Блок - схема:
Редактор кода Python:
Есть другой способ решить это решение? Внесите свой код (и комментарии) через Disqus.
Предыдущая: Напишите программу на Python для удаления элемента из кортежа.
Далее: Напишите программу на Python, чтобы найти индекс элемента кортежа.
Каков уровень сложности этого упражнения?
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code