I\'ve searched on how to do this in python and I can\'t find an answer. If you have a string:
>>> value = \'abc\'
How would you
value = 'abc' newVar=(chr(ord(value[0])+1)) newVar1=(chr(ord(value[1])+1)) newVar2=(chr(ord(value[2])+1)) value=newVar+newVar1+newVar2 print(value)
Here is what I came up with can't believe it actually worked thanks for the challenge using python 3