I'm try to make this: your enter a word like this: Happy and than the program returns somethings like : yppaH or appHy.
The problem is that I get just one letter : y or H, etc..
import random
def myfunction():
"""change letter's position"""
words = input("writte one word of your choice? : ")
words = random.choice(words)
print('E-G says : '+ words)