111k views
5 votes
8.7 Code Practice: Question 2 edhesive

User Sanniv
by
4.7k points

1 Answer

7 votes

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])

Step-by-step explanation:

User Brian Showalter
by
4.7k points