Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Slicing Task | Strings
Data Types in Python
course content

Course Content

Data Types in Python

Data Types in Python

1. Getting Familiar With Numbers in Python
2. True or False?
3. Strings
4. Bring All the Topics Together

bookSlicing Task

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.

Task

Try to use slicing on a motivational quote from Friedrich Nietzsche. Extract all the symbols from index 1 to 13 with the step of 3.

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 3. Chapter 7
toggle bottom row

bookSlicing Task

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.

Task

Try to use slicing on a motivational quote from Friedrich Nietzsche. Extract all the symbols from index 1 to 13 with the step of 3.

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 3. Chapter 7
toggle bottom row

bookSlicing Task

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.

Task

Try to use slicing on a motivational quote from Friedrich Nietzsche. Extract all the symbols from index 1 to 13 with the step of 3.

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

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.

Task

Try to use slicing on a motivational quote from Friedrich Nietzsche. Extract all the symbols from index 1 to 13 with the step of 3.

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Section 3. Chapter 7
Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
some-alt