So basically, i am trying to get the user to input something like "123" and recieve the output "3 2 1" but i cant figure out how to add the spaces
# current code
number = str(input("Type out a number with more then 1 charachter: "))
print("Original number:", number)
print("Number in reverse:", number[::-1])
I apologize in advance, im really new to programming.