Solved:

Checkmark

Answered by AI, Verified by Human Experts

8.7 Code Practice: Question 1 edhesive

8.7 Code Practice: Question 1 edhesivew = ["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

Answer:here got from a friendExplanation:w = ["Algorithm", "Logic", "Filter", "Software", "Network", "Parameters", "Analyze", "Algorithm", "Functionality", "Viruses"]for i in range (len(w)):print(w[i].upper())...

Unlock full access for 72 hours, watch your grades skyrocket.
For just $0.99 cents, get access to the powerful quizwhiz chrome extension that automatically solves your homework using AI. Subscription renews at $5.99/week.