Use the following initializer list:
w = ["Algorithm", "Logic", "Filter", "Software", "Network", "Parameters", "Analyze", "Algorithm", "Functionality", "Viruses"]
Write a loop that prints the words in uppercase letters.
Answers
Answered by
6
string.upper() function converts the complete string into UPPERCASE.
Program:
w = ["Algorithm", "Logic", "Filter", "Software", "Network", "Parameters", "Analyze", "Algorithm", "Functionality", "Viruses"]
for word in w:
print(word.upper())
Output:
ALGORITHM
LOGIC
FILTER
SOFTWARE
NETWORK
PARAMETERS
ANALYZE
ALGORITHM
FUNCTIONALITY
VIRUSES
Learn more:
1. Write statement to call the function. def Add(): X = 10 + 20 print(X) _____
https://brainly.in/question/18547516
2. Python program to find absolute difference between the odd and even numbers in the inputted number.
https://brainly.in/question/11611140
Similar questions
India Languages,
9 months ago