Comment accéder à l'article dans la liste Private en Python

Fruits = ["Apple","Banana","Cherry","Grapes"]
#access all
print(Fruits)
#access privatly
whom_to_call = Fruits[0]
print("Boss:How are you",whom_to_call,"?")
Programmer of empires