Answer :
Answer:
Here you go :)
Explanation:
(This also works for strings as well)
usr = input("Enter a number: ")
usr = list(usr)
for n in range(len(usr)):
print(usr[n], end= " ")
print(*[x for x in input()])
I wrote my code in python 3.8. I hope this helps.