Intern — Middle
What output will a program that uses different list slices produce?
livecode
Task condition
Determine what will appear in the standard output after executing the following Python code snippet, which demonstrates list slices with different index ranges.
data = ['a', 'b', 'c', 'd', 'e']
print(data[2:4])
print(data[4:])
print(data[10:])