question archive Give at least three examples that show different features of string slices
Subject:Computer SciencePrice:2.87 Bought7
Give at least three examples that show different features of string slices. Describe the feature illustrated by each example. Invent your own examples. Do not copy them for the textbook or any other source
Answer:
Feature 1
string = 'Python' print(string[-1])
Output:
n
The -1 subscript inside the square brackets prints the last element of the string
Feature 2
string = 'Python' print(string[:3])
Output:
Pyt
The [:num] subscript inside the square brackets prints the first n characters of the string excluding the end index.
Feature 3
string = 'Python' print(string[2:])
Output:
thon
The [num:] subscript inside the square brackets prints the characters from num index to the end of the string.