For example, if I were to apply 4 shifts to "breakzone" than it would be intended to be like:
"b" would be shifted by 2 characters "r" would be shifted by 3 characters "e" would be shifted by 4 characters "a" would be shifted by 5 characters and then we'd start back at the initial shift amount at 2: "k" would be shifted by 2 characters etc...
here's what I have so far:
statement = input("Enter string: ")
multiple_shifts = input(int("Enter shift amounts: "))
def caesar(word,multiple_shifts):
for ch in statement:
if ch = statement[0]:
I know it's not much but I'm definitely lost and any help is appreciated. Not asking you to "write my own code" just point me in the right direction so I'd greatly appreciate any knowledge of this subject.