I'm creating a encryption program in Python where user will input like <<< This is the text which is decrypted! How can I show the result as output? Is there any way to split "This is the text which is decrypted!" into different variables value by length? Like:
input_list=input.split(len(8))
for i in input_list:
input+n=i. #string
n +=1
And it will turn:
input1="This is "
input2=" the text"
input3=" which is"
input4=" decrypted"
input5="!"
print (input1+input2+input3+....)
And the output will show the the same text as inputted