Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to access item in list private in 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,"?")
 
PREVIOUS NEXT
Tagged: #access #item #list #private #python
ADD COMMENT
Topic
Name
6+5 =