Contact: aviboots(AT)netvision.net.il
39,972 questions
51,915 answers
573 users
def get_middle(s): midIndex = int(len(s) / 2) return s[midIndex] print(get_middle("abcXYZpow")) print(get_middle("programming")) ''' run Y a '''