I need to remove the first letter of a word and move it to the end, for example:
word = \'whatever\' # I want to convert it to \'hateverw\'
Here is what I did:
wrd = input("Give me a word: ") pig = wrd[1:] + wrd[0] + "ay" print(wrd, "in Pig Latin it is:", pig.lower())