Contact: aviboots(AT)netvision.net.il
39,974 questions
51,918 answers
573 users
s = "programming" index = len(s) // 2 print(s[index]) ''' run a '''
s = "python" length = len(s) index = length // 2 if length % 2 == 1: print(s[index]) elif length % 2 == 0: print(s[index - 1], s[index]) ''' run t h '''