Answer :
In this exercise we have to have knowledge of computational language in python, so we find the code.
How to define list in Python?
In Python, a list is represented as a sequence of objects separated by commas and enclosed in square brackets [], so an empty list, for example, can be represented by square brackets without any content.
So, to make it simpler, the code can be found below as:
w = ["Algorithm", "Logic", "Filter", "Software", "Network", "Parameters", "Analyze", "Algorithm", "Functionality", "Viruses"]
for x in w:
if(x[0]=='A'):
print(x)
See more about python at brainly.com/question/26104476

Answer:
w = ["Algorithm", "Logic", "Filter", "Software", "Network", "Parameters", "Analyze", "Algorithm", "Functionality", "Viruses"]
for i in range(len(w)):
if w[i][0] == "A":
print (w[i])
Explanation: