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!
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!