Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Вивчайте Slice the Phrase | Рядки
Типи даних у Python
course content

Зміст курсу

Типи даних у Python

Типи даних у Python

1. Знайомство з числами в Python
2. Істина чи брехня?
3. Рядки
4. Поєднання всіх тем разом

book
Slice the Phrase

Let's explore another valuable Python operation that proves beneficial when handling string data type. It can be advantageous to extract symbols at specified intervals. Ensure you review the example, as verbal explanations may not be the most effective method for grasping programming concepts (as exemplified by a famous quote from Albert Einstein in the example).

123
string = "Life is like riding a bicycle. To keep your balance, you must keep moving" sliced_string = string[1:11:4] print(sliced_string)
copy

I want to elucidate the syntax string[starting_index : ending_index : step] to you. In this context, the resultant string has been generated from the first to the eleventh character, with a step size of 4, signifying that every fourth symbol within this range has been included.

Завдання

Swipe to start coding

Now it's your turn! Follow these steps:

  1. Use slicing to extract the phrase "Get a foot" from the first string and assign it to the variable phrase1.

  2. Use slicing to extract the phrase "away" from the second string and assign it to the variable phrase2 (using negative indexing is recommended here).

Рішення

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 3. Розділ 6
toggle bottom row

book
Slice the Phrase

Let's explore another valuable Python operation that proves beneficial when handling string data type. It can be advantageous to extract symbols at specified intervals. Ensure you review the example, as verbal explanations may not be the most effective method for grasping programming concepts (as exemplified by a famous quote from Albert Einstein in the example).

123
string = "Life is like riding a bicycle. To keep your balance, you must keep moving" sliced_string = string[1:11:4] print(sliced_string)
copy

I want to elucidate the syntax string[starting_index : ending_index : step] to you. In this context, the resultant string has been generated from the first to the eleventh character, with a step size of 4, signifying that every fourth symbol within this range has been included.

Завдання

Swipe to start coding

Now it's your turn! Follow these steps:

  1. Use slicing to extract the phrase "Get a foot" from the first string and assign it to the variable phrase1.

  2. Use slicing to extract the phrase "away" from the second string and assign it to the variable phrase2 (using negative indexing is recommended here).

Рішення

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 3. Розділ 6
Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Ми дуже хвилюємося, що щось пішло не так. Що трапилося?
some-alt