What Did I Learn? In this challenge I learned more about logic: Swapping the last element with the first until you reach the middle of the list while l > count: s[count], s[l] = s[l], s[count] count += 1 l -= 1