without_end¶
Given a string, print out a version without the first and last char, so “Hello” yields “ell”. The string length will be at least 2.
This exercise was taken from codingbat.com and has been adapted for the Python language. There are many great programming exercises there, but the majority are created for Java.