So I am trying to replace a character in a string with the next letter of the alphabet using strings. I have got the input converted but I don't know what to do from here? Here is my code:
alphabet =['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z']
wordlist = []
inputword = input("Please enter a string")
wordlist = list(inputword)
for i in range(len(inputword)):
print (wordlist)
I am trying to get it so that if I inputted "Hello World" , it will return "Ifmmp xpsme"
It doesn't have to return the exact case (upper case letters can be returned as lower case