Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+7 votes
asked in CSC201 Spring 2021 by (1 point)

2 Answers

+4 votes

using the operator, for variable in string:
which in this case,
you do for char in word:
then print(char)
which will print each character down the line.

Hope this help!

answered by (1 point)
+3 votes

If it's about Question 1,
You can iterate through the input word with for loops.
With each character (each loop), print out the character with uppercase function.

Hope this helps!

answered by (1 point)
...