from shutil import which

fruit = ["Apple", "Banana", "Grape", "Strawberry", "Melon", "Orange"]

# Task 1
  # Add comments to predict what the following lines of code will do.

  # Alter the fourth print command so that it outputs a valid item from the list that hasn't yet been used.

#print(fruit[3])

#print(fruit[5])

#print(fruit[0] + " " + fruit[2])

#print(fruit[6])

# Task 2
  # Write code to output the whole list - you should be able to do this with one line of code.abs


# Task 3
  # Ask the user to input a number between 0 and 5.  Output the item in the list that matches the number they have input.

print (fruit[which])