The for loop that can be used to loop through the array s and get the length and the word is a follows:
s = ["Algorithm", "Logic", "Filter", "Software", "Network", "Parameters", "Analyze", "Algorithm", "Functionality", "Viruses"]
for i in s:
print(len(i), ":", i)
The variable s is used to store the array of strings
The for loop is used to loop through the array .
The length of each string and the string is printed out.
When the code is run, you will get exactly like the sample Run.
learn more: https://brainly.com/question/23800781?referrer=searchResults