85.6k views
1 vote
8.7 Code Practice: Question 1 edhesive

w = ["Algorithm", "Logic", "Filter", "Software", "Network", "Parameters", "Analyze", "Algorithm", "Functionality", "Viruses"]

Write a loop that prints the words in uppercase letters.

Sample Run:

ALGORITHM
LOGIC
FILTER
SOFTWARE
NETWORK
PARAMETERS
ANALYZE
ALGORITHM
FUNCTIONALITY
VIRUSES

User Paramore
by
6.8k points

1 Answer

2 votes

Answer:

here got from a friend

Step-by-step explanation:

w = ["Algorithm", "Logic", "Filter", "Software", "Network", "Parameters", "Analyze", "Algorithm", "Functionality", "Viruses"]

for i in range (len(w)):

print(w[i].upper())

User Ian Smith
by
7.3k points