Do you get content of oper right before trying it out?
oper = ['plus', 'minus', 'times']
oper.extend('divide')
How about do you know what happens when you run this? Big bang? ;)
print('a'
'b'
'c')
And this is same, isn't it`?
c = 'c'
print('a'
'b'
c)