Question 5
Evaluate:
Solution
String slicing: [start:stop:step]
start: include character from this index onwardsstop: exclude character from this index onwardsstep: advance by how many places at once (negative values means advancing backwards) - not specified here
The character at index 3 is t, and since we exclude characters from index 4 onwards, we do not include the next character (i.e., u).