What will the following code display?
mylist = ['mercury', 'venus', 'earth', 'mars', , 'jupiter', 'staurn', 'uranus', 'neptune'] print (mylist[0::2])

a. ['earth', 'venus', 'mercury']
b. ['mercury', 'venus']
c. ['mercury', 'earth', 'jupiter', 'uranus']
d. ['mercury', 'venus', 'earth'] [