Tell us what’s happening:
My concatenation of two string parts aint working no matter what method I use which seem to be right.
How do I do it the right way?
Your code so far
# User Editable Region
alphabet = 'abcdefghijklmnopqrstuvwxyz'
shift = 5
first_part=alphabet[shift:]
second_part=alphabet[:shift]
complete=second_part+first_part
print(complete)
# User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15
Challenge Information:
Build a Caesar Cipher - Step 4