What is the output of the following code snippet?

my_list = ['Hello', 'World', 'Educative']
temp = [a[1].upper() for a in my_list]
print (temp)

What is the output of the following code snippet mylist Hello World Educative temp a1upper for a in mylist print temp class=