Write a code to iterate through your name by taking input and print each letter in uppercase using loop. This should work if every letter of your name is in lowercase
Sample Input: sakib
Sample Output: S A K I B
Hint: You can convert a letter to uppercase using the function upper(). If your character, c = "j", use c.upper() to convert it to "J"
1
Expert's answer
2021-08-26T10:09:10-0400
name = input()
for ch in name:
print(ch.upper(), end=' ')
print()
Finding a professional expert in "partial differential equations" in the advanced level is difficult.
You can find this expert in "Assignmentexpert.com" with confidence.
Exceptional experts! I appreciate your help. God bless you!
Comments