Computer Science, asked by elsa2759140, 5 hours ago

_____ is used to find a certain information from the list? ​

Answers

Answered by itzsrividya
4

Answer:

gracy nuvvu ni answer brainlist select cheyaka pothe thana aswer endhuku report chestavu nuvvu???

Answered by pragyakirti12345
0

Answer: Loop

Concept : Loops in python

Given : _____ is used to find a certain information from the list

To Fine : _____ is used to find a certain information from the list ?

Explanation:

List is a data structure used in Python programming language. List is also like an array in Python. List can contain elements of any data type , means in a single list, the elements can be of integer, float, real number, string, or any object. List also stores its elements in contiguous locations. To find a certain information from a list or to search an element in a list, loops are used to find them. By using the loop, one can access all the elements in a list, and then the required information or the element can be found out.

Example can be -

list = [1, 2, a, d]

for i in list :

   print(i)

Output : 1

             2

             a

             d

#SPJ3

Similar questions