87,804 views
12 votes
12 votes
8.7 Code Practice: Question 2 edhesive

User Jmvtrinidad
by
3.2k points

1 Answer

9 votes
9 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 Abdul Rauf
by
2.8k points