Basically, I want to use a for loop inside of a printed statement, basically the user inputs the word, and it prints that out after a variable. Something like this
If they input the word "Pizza" it will output:
I like P
I like i
I like z
I like z
I like a
PIZZA Exactly like that.
I've already tried a slow way, using print(name[0]) and print(name[1]) and so on but I realized there would be errors if the inputted text wasn't exactly 5 characters.