Blog

What is the output of the code below?

list = [‘a’, ‘b’, ‘c’, ‘d’, ‘e’]
for x in range(1, len(list)):
… print(list)